Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau committed Sep 17, 2024
1 parent 5dc9824 commit 3826a93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion micropip/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def __init__(self, logger: logging.Logger):
def __getattr__(self, attr):
return getattr(self.logger, attr)

def __setattr(self, attr, value):
def __setattr__(self, attr, value):
return setattr(self.logger, attr, value)

@contextmanager
Expand Down

0 comments on commit 3826a93

Please sign in to comment.