Skip to content

Commit

Permalink
pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
gizmoguy committed Sep 26, 2024
1 parent ac0bf4b commit edc1b0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions adapters/vendors/rabbitmq/test_rabbit.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def basic_publish(
body, # pylint: disable=unused-argument
properties=None, # pylint: disable=unused-argument
mandatory=False,
): # pylint: disable=unused-argument
): # pylint: disable=unused-argument, too-many-arguments, too-many-positional-arguments
return True


Expand All @@ -39,7 +39,7 @@ def basic_publish(
body, # pylint: disable=unused-argument
properties=None, # pylint: disable=unused-argument
mandatory=False,
): # pylint: disable=unused-argument
): # pylint: disable=unused-argument, too-many-arguments, too-many-positional-arguments
raise pika.exceptions.AMQPError("failure")


Expand Down
4 changes: 2 additions & 2 deletions faucet/faucet_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ValveTableConfig: # pylint: disable=too-many-instance-attributes
def __init__(
self,
name,
table_id, # pylint: disable=too-many-arguments
table_id,
exact_match=None,
meter=None,
output=True,
Expand All @@ -39,7 +39,7 @@ def __init__(
next_tables=None,
metadata_match=0,
metadata_write=0,
):
): # pylint: disable=too-many-arguments, too-many-positional-arguments
self.name = name
self.table_id = table_id
self.exact_match = exact_match
Expand Down

0 comments on commit edc1b0d

Please sign in to comment.