Skip to content

Commit

Permalink
Fix some pylint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
arjun-menon committed Nov 26, 2024
1 parent f9494d2 commit f66c83a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion alteza/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,8 +474,8 @@ def makeSite(self) -> None:
self.generate(content)

elapsedMilliseconds = (time.time_ns() - startTimeNs) / 10**6
# pylint: disable=consider-using-f-string
print(
# pylint: disable=consider-using-f-string
"\nSite generation complete (Alteza %s). Time elapsed: %.2f ms"
% (alteza_version, elapsedMilliseconds)
)
Expand Down
13 changes: 7 additions & 6 deletions alteza/version.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
version = "0.9.0"
version: str = "0.9.0"

name = "alteza"
name: str = "alteza"

repo_url = "https://github.com/arjun-menon/%s" % name
download_url = "%s/archive/v%s.tar.gz" % (repo_url, version)
# pylint: disable=consider-using-f-string
repo_url: str = "https://github.com/arjun-menon/%s" % name
download_url: str = "%s/archive/v%s.tar.gz" % (repo_url, version)

author = "Arjun G. Menon"
author_email = "[email protected]"
author: str = "Arjun G. Menon"
author_email: str = "[email protected]"

0 comments on commit f66c83a

Please sign in to comment.