Update 0.9

This commit is contained in:
Maxim Khomutov 2022-03-16 02:17:42 +03:00
parent 17b9e6acc8
commit db09bba5b3
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
__title__ = "gitflic" __title__ = "gitflic"
__version__ = "1.0" __version__ = "0.9"
__description__ = "GitflicApi wrapper" __description__ = "GitflicApi wrapper"
__author__ = "SantaSpeen" __author__ = "SantaSpeen"
__author_email__ = "dir@sssr.dev" __author_email__ = "dir@sssr.dev"

View File

@ -39,7 +39,7 @@ class Gitflic:
def reg_call(self, method: str): def reg_call(self, method: str):
l = lambda *_args, **_kwargs: self.call(method, *_args, **_kwargs) l = lambda add_to_method="", *_args, **_kwargs: self.call(method+add_to_method, *_args, **_kwargs)
l.__name__ = method.replace("/", "_") l.__name__ = method.replace("/", "_")
return l return l