mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2025-12-08 23:04:35 +00:00
Convert .format() to f-strings with flynt
This commit is contained in:
@@ -80,7 +80,7 @@ class QmExtracter:
|
||||
grade = grade.upper()
|
||||
if grade not in ['A', 'B', 'C', 'D', 'E', 'X']:
|
||||
self.__print_error(svx_file, line,
|
||||
'Unknown QM grade ‘%s’' % grade)
|
||||
f'Unknown QM grade ‘{grade}’')
|
||||
continue
|
||||
|
||||
# Sanitise the resolution station.
|
||||
@@ -232,10 +232,9 @@ class QmExtracter:
|
||||
}[grade]
|
||||
except KeyError:
|
||||
grade_colour = '00'
|
||||
formatted_grade = '\033[{}m{}\033[0m'.format(grade_colour,
|
||||
grade)
|
||||
formatted_survey_name = '\033[4m{}\033[0m'.format(survey_name)
|
||||
formatted_name = '\033[4m{}\033[0m'.format(name)
|
||||
formatted_grade = f'[{grade_colour}m{grade}[0m'
|
||||
formatted_survey_name = f'[4m{survey_name}[0m'
|
||||
formatted_name = f'[4m{name}[0m'
|
||||
else:
|
||||
formatted_grade = grade
|
||||
formatted_survey_name = survey_name
|
||||
@@ -254,11 +253,10 @@ class QmExtracter:
|
||||
if n_printed == 0 and not qms:
|
||||
print('No QMs found')
|
||||
elif n_printed == 0:
|
||||
print('No unresolved QMs found (but %u resolved ones were)' %
|
||||
len(qms))
|
||||
print(f'No unresolved QMs found (but {len(qms)} resolved ones were)')
|
||||
|
||||
def __print_error(self, svx_file, line, exc):
|
||||
sys.stderr.write('%s: %s\n %s\n' % (svx_file, exc, line))
|
||||
sys.stderr.write(f'{svx_file}: {exc}\n {line}\n')
|
||||
|
||||
|
||||
def main():
|
||||
|
||||
Reference in New Issue
Block a user