Skip to content

Commit 0c93b25

Browse files
committed
update fstring syntax error
1 parent efc5b88 commit 0c93b25

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ On the bottom you are able to go back, save all the created data into a director
4949
- start debug mode by setting a flag
5050
- add loading bars for start & listening screen
5151
- add proper testing suite
52+
- better log file handling!
5253

5354

5455
## 4 License

audioQualityTester.egg-info/PKG-INFO

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,10 @@ On the bottom you are able to go back, save all the created data into a director
7575

7676
## 3 Known Issues and Roadmap
7777

78-
The current plan is to fix minor bugs and ensure the interoperability of the platforms.
78+
- assert interoperability
79+
- start debug mode by setting a flag
80+
- add loading bars for start & listening screen
81+
- add proper testing suite
7982

8083

8184
## 4 License

audioQualityTester/model/backend.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,8 @@ def validateUserInput(self, **kwargs) -> bool:
375375
if userInputIsValid:
376376
modelLogger.info('Start Screen User input is valid')
377377
else:
378-
modelLogger.warning(f'Start Screen User input is defective: {self.errorMsg.replace("\n", ", ")}')
378+
errorMsg = self.errorMsg.replace("\n", ", ")
379+
modelLogger.warning(f'Start Screen User input is defective: {errorMsg}')
379380

380381
return userInputIsValid
381382

0 commit comments

Comments
 (0)