summaryrefslogtreecommitdiff
path: root/date.py
diff options
context:
space:
mode:
authorroot <root@turin.home>2022-01-30 15:23:36 +0000
committerroot <root@turin.home>2022-01-30 15:23:36 +0000
commite858cc8e4c644568766db0e2609b243248402379 (patch)
tree608a3740f37a77a9752a5f93a5ae4cf2881cd710 /date.py
parent2304d17d5fa4b50d8ba0960af484d48a02bb14a6 (diff)
Dates class problem in heating
Diffstat (limited to 'date.py')
-rw-r--r--date.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/date.py b/date.py
deleted file mode 100644
index 77df9ab..0000000
--- a/date.py
+++ /dev/null
@@ -1,18 +0,0 @@
-import time
-from datetime import datetime
-
-
-class date:
- def __init__(self):
- pass
-
- def day(self):
- return int(datetime.now().strftime("%Y%m%d"))
-
- def time(self):
- return int(datetime.now().strftime("%H%M%S"))
-
- def date(self):
- return int(datetime.now().strftime("%A"))
-
-