Skip to content

Commit

Permalink
Make pylint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
GreatBahram committed Mar 9, 2021
1 parent f07994e commit e304d85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minio/datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __str__(self):
def __eq__(self, other):
if isinstance(other, Bucket):
return self.name == other.name
elif isinstance(other, str):
if isinstance(other, str):
return self.name == other
return NotImplemented

Expand Down

0 comments on commit e304d85

Please sign in to comment.