Skip to content

Commit

Permalink
Merge pull request #1 from sobolevn/patch-1
Browse files Browse the repository at this point in the history
Adds missing annotation to `Explorer.run`
  • Loading branch information
orsinium authored Jun 25, 2021
2 parents 49edd7f + 8777f28 commit 4c1b609
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typeforce/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def modules(self) -> typing.Iterable[Module]:
continue
yield Module(path=mpath, exe=self.exe, dry=self.dry)

def run(self):
def run(self) -> typing.Iterable[str]:
for module in self.modules:
status = module.process()
yield TEMPLATE.format(
Expand Down

0 comments on commit 4c1b609

Please sign in to comment.