MyPy 抱怨日期时间差异
MyPy complains about datetime difference
MyPy 抱怨为 bar 分配两个日期时间差的代码行。
foo 的类型是 datetime.timedelta。
MyPy 的错误消息是“int not callable”。
我错过了什么?
import arrow
t1 = arrow.now()
t2 = arrow.now()
foo = t1 - t2
bar = foo.total_seconds()
这是一个已知问题。详情请看以下内容:
MyPy 抱怨为 bar 分配两个日期时间差的代码行。
foo 的类型是 datetime.timedelta。
MyPy 的错误消息是“int not callable”。
我错过了什么?
import arrow
t1 = arrow.now()
t2 = arrow.now()
foo = t1 - t2
bar = foo.total_seconds()
这是一个已知问题。详情请看以下内容: