We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e87633b commit 169a4efCopy full SHA for 169a4ef
main.py
@@ -1,11 +1,11 @@
1
import sys
2
-import core
3
-from core.i18n import locale
4
5
if __name__ == "__main__":
6
version = sys.version_info
7
- if version < (3, 9):
+ from core.i18n import locale
+ if version < (3, 12):
8
print(locale.t("main.unsupported_version",
9
cur=f"{version.major}.{version.minor}.{version.micro}"))
10
exit(0)
+ import core
11
core.init()
0 commit comments