Skip to content

Commit 5502c9e

Browse files
authored
hmmm...not sure what to remove here -- #13
everything seems to be dependent on the line before it
1 parent 77b1793 commit 5502c9e

File tree

1 file changed

+1
-1
lines changed
  • py-data/VS_test/problems/api-related/1/correct-usages

1 file changed

+1
-1
lines changed

py-data/VS_test/problems/api-related/1/correct-usages/duration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
def duration(seconds):
1+
def duration(seconds):
22
p, s = divmod(seconds, 60)
33
p, m = divmod(p, 60)
44
p, h = divmod(p, 60)

0 commit comments

Comments
 (0)