From b205316aec5d3118a960a46386303ef0aa5cdfa8 Mon Sep 17 00:00:00 2001 From: Markus Wang Halvorsen Date: Thu, 31 Aug 2023 22:03:33 +0200 Subject: [PATCH] expose TIMESTAMP_PRECISION --- fflogsapi/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fflogsapi/__init__.py b/fflogsapi/__init__.py index d0aaf9d..745fd67 100644 --- a/fflogsapi/__init__.py +++ b/fflogsapi/__init__.py @@ -14,7 +14,7 @@ ''' from .client import FFLogsClient -from .constants import EventType, FightDifficulty, PartySize +from .constants import TIMESTAMP_PRECISION, EventType, FightDifficulty, PartySize from .util.gql_enums import GQLEnum __all__ = [ @@ -25,6 +25,7 @@ 'FightDifficulty', 'PartySize', 'EventType', + 'TIMESTAMP_PRECISION', # util/gql_enums.py 'GQLEnum',