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 05b976c commit b338d26Copy full SHA for b338d26
python/taichi/tools/diagnose.py
@@ -16,9 +16,9 @@ def main():
16
print(f"platform: {platform.platform()}")
17
print(f'architecture: {" ".join(platform.architecture())}')
18
print(f"uname: {platform.uname()}")
19
- locale.setlocale(locale.LC_ALL, '')
+ locale.setlocale(locale.LC_ALL, "")
20
loc, enc = locale.getlocale(), locale.getpreferredencoding()
21
- print(f'locale: {loc[0]}.{enc if enc else loc[1]}')
+ print(f"locale: {loc[0]}.{enc if enc else loc[1]}")
22
print(f'PATH: {os.environ.get("PATH")}')
23
print(f"PYTHONPATH: {sys.path}")
24
print("")
0 commit comments