Skip to content

Commit

Permalink
Suggestions by pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
rbanffy committed Nov 10, 2023
1 parent 4612a92 commit 0ee57fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions pip_chill/pip_chill.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ def __eq__(self, other):
return True
if isinstance(other, Distribution):
return self.name == other.name
else:
return self.name == other
return self.name == other

def __hash__(self):
return hash(self.name)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"setup.py script"

from setuptools import setup

Expand Down

0 comments on commit 0ee57fe

Please sign in to comment.