We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00523b4 commit 08bc655Copy full SHA for 08bc655
time_zone_conversion/time_zone.py
@@ -46,13 +46,13 @@ class InvalidMins(Exception):
46
hours1 = hours1 + 8
47
48
if hours1 > 12:
49
- hours1 = hours1-12
+ hours1 = hours1 - 12
50
if ampm == 'am':
51
ampm = 'pm'
52
elif ampm == 'pm':
53
ampm = 'am'
54
elif hours1 < 0:
55
- hours1 = hours1+12
+ hours1 = hours1 + 12
56
57
58
@@ -68,13 +68,13 @@ class InvalidMins(Exception):
68
hours1 = hours1 - 8
69
70
71
72
73
74
75
76
77
78
79
80
0 commit comments