misc.py

changeset 18
1c8ff93fbfac
parent 5
a65b680f1774
child 20
3199e289ae62
--- a/misc.py	Sat Jun 10 21:03:26 2017 +0300
+++ b/misc.py	Sat Jun 10 21:09:11 2017 +0300
@@ -8,7 +8,7 @@
 	return datetime.now()
 	#return datetime.combine(tänään(), datetime.now().time())
 
-def muotoile_aika(aika, suhteellinen = True):
+def time_representation(aika, suhteellinen = True):
 	erotus = aika - nyt()
 	if suhteellinen and erotus < timedelta(minutes = 1):
 		return 'nyt'
@@ -32,5 +32,5 @@
 				tietue[avain] = muunnos(tietue[avain])
 		yield tietue
 
-def yö(aika):
-	return aika.hour >= 23 or aika.hour < 5
+def is_night_time(time):
+	return time.hour >= 23 or time.hour < 5

mercurial