Skip to content

Commit fca731b

Browse files
committed
style: type untyped methods
1 parent 4892945 commit fca731b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

commitizen/commands/example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ def __init__(self, config: BaseConfig, *args):
99
self.config: BaseConfig = config
1010
self.cz = factory.committer_factory(self.config)
1111

12-
def __call__(self):
12+
def __call__(self) -> None:
1313
out.write(self.cz.example())

commitizen/commands/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ def __init__(self, config: BaseConfig, *args):
99
self.config: BaseConfig = config
1010
self.cz = factory.committer_factory(self.config)
1111

12-
def __call__(self):
12+
def __call__(self) -> None:
1313
out.write(self.cz.schema())

0 commit comments

Comments
 (0)