Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mohammadali66/c92c823d53aebf32188b290a750277dc to your computer and use it in GitHub Desktop.
Save mohammadali66/c92c823d53aebf32188b290a750277dc to your computer and use it in GitHub Desktop.
class Batch:
...
def __gt__(self, other):
if self.eta is None:
return False
if other.eta is None:
return True
return self.eta > other.eta
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment