Skip to content

Commit

Permalink
Fixed method with no argument
Browse files Browse the repository at this point in the history
  • Loading branch information
HarshCasper committed Mar 22, 2021
1 parent aa112ba commit d5dd26d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_lazy_object_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ class Class(object):
def __enter__(self):
return self

def __exit__(*args, **kwargs):
def __exit__(self, *args, **kwargs):
return

instance = Class()
Expand Down

0 comments on commit d5dd26d

Please sign in to comment.