Skip to content

Commit 14a789e

Browse files
committed
.
1 parent e97034b commit 14a789e

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ repos:
3030
]
3131

3232
- repo: https://github.com/psf/black
33-
rev: 25.1.0
33+
rev: 26.1.0
3434
hooks:
3535
- id: black
3636
args: ["--config", "pyproject.toml"]

pyunicore/_version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Generated by versioneer-0.29
88
# https://github.com/python-versioneer/python-versioneer
99
"""Git implementation of _version.py."""
10+
1011
import errno
1112
import functools
1213
import os

pyunicore/cli/main.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,7 @@ def help():
4040
print(_header)
4141
s = """UNICORE Commandline Client (pyUNICORE) %s, https://www.unicore.eu
4242
Usage: unicore <command> [OPTIONS] <args>
43-
The following commands are available:""" % pyunicore._version.get_versions().get(
44-
"version", "n/a"
45-
)
43+
The following commands are available:""" % pyunicore._version.get_versions().get("version", "n/a")
4644
print(s)
4745
for cmd in sorted(_commands):
4846
print(f" {cmd:20} - {get_command(cmd).get_description()}")

0 commit comments

Comments
 (0)