You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I clone the repo and then try to launch main.py
Expected behavior
It shoud work
Actual behavior
multiple f-strings errors
Errors
No response
EmuHaven version
0.14.0 from git
Operating System
windows
Other details
every f-string is fucked up with incorrect quotation marks, for example in thread_event_manager.py on line 55
self.logger.warning(f"Event {event["id"]} returned no result")
it should be self.logger.warning(f"Event {event['id']} returned no result")
Acknowledgements
I have searched the existing issues and this is a new ticket, NOT a duplicate or related to another open or closed issue.
I have a bit more time now, so here's a more proper response.
I prefer using the double quotations, and when I heard that 3.12 supported using double quotations within double quoations, I thought, why not.
Although I could change all the f strings to conform to <3.12 syntax, I don't know when I will be able to do that. So, for now, you'll have to use Python 3.12 or greater. I apologise for any inconvenience.
Steps to reproduce
when I clone the repo and then try to launch main.py
Expected behavior
It shoud work
Actual behavior
multiple f-strings errors
Errors
No response
EmuHaven version
0.14.0 from git
Operating System
windows
Other details
every f-string is fucked up with incorrect quotation marks, for example in thread_event_manager.py on line 55
self.logger.warning(f"Event {event["id"]} returned no result")
it should be self.logger.warning(f"Event {event['id']} returned no result")
Acknowledgements
The text was updated successfully, but these errors were encountered: