Skip to content

Commit

Permalink
🚨(backend) migrate to pylint 3.3.x
Browse files Browse the repository at this point in the history
Since pylint 3.3.x, a new error is raised in our codebase
"too-many-positional-arguments" so we update our codebase to fix that.
  • Loading branch information
jbpenrath committed Sep 26, 2024
1 parent 00030ac commit 1486e8f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def create_product_purchased(
order_status=enums.ORDER_STATE_VALIDATED,
contract_definition=None,
product=None,
): # pylint: disable=too-many-arguments
): # pylint: disable=too-many-arguments, too-many-positional-arguments
"""Create a product, it's enrollment and it's order."""
if not product:
if product_type == enums.PRODUCT_TYPE_CERTIFICATE:
Expand Down

0 comments on commit 1486e8f

Please sign in to comment.