Change quotes in comments for consistency

This commit is contained in:
Abdulkadir Furkan Şanlı 2018-10-09 10:06:48 +02:00
parent 4c7126d1b9
commit 569de7cc83

4
IA.py
View File

@ -69,8 +69,8 @@ def select_final_time(conn, day, id):
def parse_time_string(timestring): def parse_time_string(timestring):
""" """
Parse given 24h time string of format 'HH:MM' into time_struct Parse given 24h time string of format "HH:MM" into time_struct
:param timestring: time string 'HH:MM' :param timestring: time string "HH:MM"
""" """
timestruct = time.strptime(timestring, "%H:%M") timestruct = time.strptime(timestring, "%H:%M")
return timestruct return timestruct