Skip to content

Commit

Permalink
ENH: Fix linting issues. [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Taher Chegini committed Dec 20, 2023
1 parent a154d32 commit 8c811fe
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pygeohydro/print_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,14 @@ def get_sys_info():
[
("python", sys.version),
("python-bits", struct.calcsize("P") * 8),
("OS", f"{sysname}"),
("OS-release", f"{release}"),
("machine", f"{machine}"),
("processor", f"{processor}"),
("byteorder", f"{sys.byteorder}"),
("LC_ALL", f'{os.environ.get("LC_ALL", "None")}'),
("LANG", f'{os.environ.get("LANG", "None")}'),
("LOCALE", f"{locale.getlocale()}"),
("OS", str(sysname)),
("OS-release", str(release)),
("machine", str(machine)),
("processor", str(processor)),
("byteorder", str(sys.byteorder)),
("LC_ALL", os.environ.get("LC_ALL", "None")),
("LANG", os.environ.get("LANG", "None")),
("LOCALE", str(locale.getlocale())),
]
)
return blob
Expand Down

0 comments on commit 8c811fe

Please sign in to comment.