mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-17 10:11:56 +02:00
Apply flynt to use f-strings
This commit is contained in:
parent
37a6d9e2e7
commit
1d4ba577a9
22 changed files with 123 additions and 124 deletions
|
@ -77,7 +77,7 @@ class CsvData(QObject):
|
|||
for idx, value in enumerate(elt):
|
||||
dataList[idx].appendValue(value)
|
||||
except Exception as e:
|
||||
logging.error("CsvData: Failed to load file: {}\n{}".format(self._filepath, str(e)))
|
||||
logging.error(f"CsvData: Failed to load file: {self._filepath}\n{str(e)}")
|
||||
|
||||
return dataList
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue