Skip to content

Commit

Permalink
🤦
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshix-1 authored and github-actions[bot] committed Apr 8, 2024
1 parent 40ec2c6 commit 0977ccc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion typed_stream/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ def main() -> str | None:
arg_parser.parse_args([sys.argv[0], "--help"])
for method in methods:
print(f"Stream.{method}:")
print(f"\t{getattr(getattr(Stream, method, None), '__doc__', None)}")
print(
f"\t{getattr(getattr(Stream, method, None), '__doc__', None)}"
)
return None

return run_program(options)
Expand Down

0 comments on commit 0977ccc

Please sign in to comment.