Skip to content

Commit

Permalink
Add missing return type annotation (#10)
Browse files Browse the repository at this point in the history
to get ruff happy again
  • Loading branch information
meatballhat authored Nov 22, 2024
1 parent 06e0ade commit ce29259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/coglet/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from coglet import file_runner


def main():
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument(
'--working-dir', metavar='DIR', required=True, help='working directory'
Expand Down

0 comments on commit ce29259

Please sign in to comment.