Skip to content

Commit

Permalink
pylint-disable comments
Browse files Browse the repository at this point in the history
  • Loading branch information
slayoo committed Aug 9, 2024
1 parent 863df05 commit ad0b579
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit_tests/environments/test_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_register_environment_makes_env_instances_reusable():
def test_register_environment_fails_with_other_instantiate_present():
# arrange
class BogusEnv(Env):
def instantiate(self, builder):
def instantiate(self, *, builder): # pylint: disable=unused-argument
assert False

# act
Expand All @@ -52,7 +52,7 @@ def instantiate(self, builder):
@staticmethod
def test_register_environment_no_error_registering_class_inheritting_from_a_decorated_one():
# arrange
class NewEnv(Env):
class NewEnv(Env): # pylint: disable=too-few-public-methods
pass

# act
Expand Down

0 comments on commit ad0b579

Please sign in to comment.