Merge "Fix DeprecationWarning when call method delta_seconds"
This commit is contained in:
commit
c453230a96
@ -295,7 +295,7 @@ def delta_seconds(before, after):
|
||||
datetime objects (as a float, to microsecond resolution).
|
||||
"""
|
||||
delta = after - before
|
||||
return total_seconds(delta)
|
||||
return delta.total_seconds()
|
||||
|
||||
|
||||
@removals.remove(
|
||||
|
Loading…
x
Reference in New Issue
Block a user