mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
Too eager with f-strings
This commit is contained in:
parent
f6097dbe9e
commit
653993a82b
1 changed files with 2 additions and 1 deletions
|
|
@ -191,7 +191,8 @@ def get_table(filename, name=None):
|
|||
if lib.tables:
|
||||
return lib.tables[0]
|
||||
else:
|
||||
raise ValueError(f'Could not find ACE table with name: {name}')
|
||||
raise ValueError('Could not find ACE table with name: {}'
|
||||
.format(name))
|
||||
|
||||
|
||||
class Library(EqualityMixin):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue