Fix pySim.esim.es2p.Param.timestamp._encode

************* Module pySim.esim.es2p
pySim/esim/es2p.py:107:19: E1101: Class 'datetime' has no 'toisoformat' member (no-member)

Change-Id: Ib762792d595048bf6d7d6f5acbe2715f137ae5bb
This commit is contained in:
Harald Welte
2024-08-18 09:51:08 +02:00
committed by laforge
parent c6f8457ff1
commit 6d4c566fd7

View File

@@ -104,7 +104,7 @@ class param:
@classmethod
def _encode(cls, data):
return datetime.toisoformat(data)
return datetime.isoformat(data)
class NotificationPointId(ApiParamInteger):
pass