From b99056aa92b31561089968dcba800c2871654e15 Mon Sep 17 00:00:00 2001 From: "Jason M. Gates" Date: Wed, 24 Apr 2024 11:31:43 -0600 Subject: [PATCH] chore: Ignore complexity warning Reducing the complexity will have to be handled later. https://docs.astral.sh/ruff/rules/complex-structure/ --- shell_logger/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell_logger/shell.py b/shell_logger/shell.py index 74afbb1..ff464c6 100644 --- a/shell_logger/shell.py +++ b/shell_logger/shell.py @@ -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: """