Skip to content

Commit 68a7339

Browse files
committed
Mark UnixTimestamp as positive Int
1 parent 46c9226 commit 68a7339

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugwise/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def deserialize(self, val):
209209

210210
class UnixTimestamp(Int):
211211
def __init__(self, value, length=8):
212-
Int.__init__(self, value, length=length)
212+
Int.__init__(self, value, length, False)
213213

214214
def deserialize(self, val):
215215
Int.deserialize(self, val)

0 commit comments

Comments
 (0)