We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3ef909 commit dcb7750Copy full SHA for dcb7750
msgpack/ext.py
@@ -56,7 +56,7 @@ def __init__(self, seconds, nanoseconds=0):
56
Note: Negative times (before the UNIX epoch) are represented as negative seconds + positive ns.
57
"""
58
if not isinstance(seconds, int_types):
59
- raise TypeError("seconds must be an interger")
+ raise TypeError("seconds must be an integer")
60
if not isinstance(nanoseconds, int_types):
61
raise TypeError("nanoseconds must be an integer")
62
if not (0 <= nanoseconds < 10**9):
0 commit comments