From 4575563dd36e3d3ae9f3a70cbb494336125cb5d3 Mon Sep 17 00:00:00 2001 From: Anthony Correa Date: Sun, 20 Nov 2022 17:28:16 -0600 Subject: [PATCH] fix circular import? --- pyteamsnap/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyteamsnap/client.py b/pyteamsnap/client.py index 40aabd7..a1f2bb8 100644 --- a/pyteamsnap/client.py +++ b/pyteamsnap/client.py @@ -6,7 +6,7 @@ from apiclient import ( JsonResponseHandler, JsonRequestFormatter, ) -from pyteamsnap.models.base import BaseTeamsnapObject +# import pyteamsnap.models.base import datetime from pyteamsnap.formatters import CollectionJsonResponseHandler, CollectionJsonRequestFormatter @@ -40,7 +40,7 @@ class TeamSnap(APIClient): return d.get(link_name) def bulk_load( - self, team_id, types: T.List[BaseTeamsnapObject], **kwargs + self, team_id, types: T.List[T.Any], **kwargs # TODO fix typing ) -> T.List[TTeamSnap]: """