Skip to content

Commit

Permalink
more ruff fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Jan 7, 2025
1 parent 3ca3601 commit 30abe16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
version_ns = {}
exec(compile(open(_version_py).read(), _version_py, "exec"), version_ns) # noqa: S102, SIM115
# The short X.Y version.
version = "%i.%i" % version_ns["version_info"][:2]
version = "{}.{}".format(*version_ns["version_info"][:2])
# The full version, including alpha/beta/rc tags.
release = version_ns["__version__"]

Expand Down

0 comments on commit 30abe16

Please sign in to comment.