1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-13 16:23:50 +03:00

python: Reformat nt_time.py

Signed-off-by: Jo Sutton <josutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Jo Sutton
2024-02-02 13:11:22 +13:00
committed by Andrew Bartlett
parent debc4bc31f
commit 2748466ec6

View File

@@ -25,9 +25,7 @@ NtTime = NewType("NtTime", int)
NtTimeDelta = NewType("NtTimeDelta", int)
NT_EPOCH = datetime.datetime(
1601, 1, 1, 0, 0, 0, 0, tzinfo=datetime.timezone.utc
)
NT_EPOCH = datetime.datetime(1601, 1, 1, 0, 0, 0, 0, tzinfo=datetime.timezone.utc)
NT_TICKS_PER_μSEC = 10
NT_TICKS_PER_SEC = NT_TICKS_PER_μSEC * 10**6