Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fca731b

Browse files
committedMay 30, 2025·
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)
Please sign in to comment.