Skip to content

Commit

Permalink
chore: Ignore complexity warning
Browse files Browse the repository at this point in the history
Reducing the complexity will have to be handled later.

https://docs.astral.sh/ruff/rules/complex-structure/
  • Loading branch information
jmgate committed Apr 24, 2024
1 parent 6424816 commit b99056a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell_logger/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def run(self, command: str, **kwargs) -> SimpleNamespace:
)

@staticmethod
def tee(
def tee( # noqa: C901
stdout: Optional[IO[bytes]], stderr: Optional[IO[bytes]], **kwargs
) -> SimpleNamespace:
"""
Expand Down

0 comments on commit b99056a

Please sign in to comment.