Skip to content

Commit e3821f6

Browse files
Gavin AguiarGavin Aguiar
authored andcommitted
Updated time format
1 parent 30bd2e7 commit e3821f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azure_functions_worker/loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def install() -> None:
5353
def convert_to_seconds(timestr: str):
5454
x = time.strptime(timestr, '%H:%M:%S')
5555
return int(timedelta(hours=x.tm_hour, minutes=x.tm_min,
56-
seconds=x.tm_sec).total_seconds())
56+
seconds=x.tm_sec).total_seconds())
5757

5858

5959
def uninstall() -> None:

0 commit comments

Comments
 (0)