Fix all typing issues

This commit is contained in:
Ayaz Salikhov
2022-01-23 12:44:16 +03:00
parent 013a42fff3
commit 37c510fc8e
25 changed files with 184 additions and 129 deletions

View File

@@ -7,7 +7,7 @@ from plumbum.cmd import git
class GitHelper:
@staticmethod
def commit_hash() -> str:
return git["rev-parse", "HEAD"]().strip()
return git["rev-parse", "HEAD"]().strip() # type: ignore
@staticmethod
def commit_hash_tag() -> str:
@@ -15,7 +15,7 @@ class GitHelper:
@staticmethod
def commit_message() -> str:
return git["log", -1, "--pretty=%B"]().strip()
return git["log", -1, "--pretty=%B"]().strip() # type: ignore
if __name__ == "__main__":