File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 4747 help = ("Maximum size of sent messages in MB." ),
4848)
4949def cli (
50- debug : bool ,
50+ debug : bool , # noqa:FBT001
5151 address : str ,
5252 tls_certs_dir : str ,
53- insecure : bool ,
53+ insecure : bool , # noqa:FBT001
5454 max_recv_message_size : int ,
5555 max_send_message_size : int ,
56- ) -> None : # noqa:FBT001 # We only expect callers via the CLI.
56+ ) -> None : # We only expect callers via the CLI.
5757 """A Crossplane composition function."""
5858 try :
5959 level = logging .Level .INFO
Original file line number Diff line number Diff line change @@ -116,3 +116,6 @@ convention = "google"
116116[tool .ruff .lint .pep8-naming ]
117117# gRPC requires this PascalCase function name.
118118extend-ignore-names = [" RunFunction" ]
119+
120+ [tool .ruff .lint .pylint ]
121+ max-args = 6
You can’t perform that action at this time.
0 commit comments