Created
September 16, 2019 05:24
-
-
Save TomerCohen95/e13a3b9d94341bddfc9f02eeb0ebc345 to your computer and use it in GitHub Desktop.
forth layer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def was_created_today(machine) -> bool: | |
| date = _get_date_from_name(machine.name) | |
| date_now = datetime.datetime.now().date() | |
| return (date_now - date).days > 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment