Skip to content

Commit 7e9f5fe

Browse files
authored
add missing Base class to collections (#25)
1 parent d11166e commit 7e9f5fe

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tasi/io/public/pose.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
PublicEntityMixin,
2323
Velocity,
2424
)
25+
from tasi.io.base import Base
2526
from tasi.io.public.traffic_participant import TrafficParticipant
2627
from tasi.io.util import as_geojson
2728

@@ -299,7 +300,7 @@ def as_tasi(self, as_record: bool = False, **kwargs) -> Union[Dict, tasi.GeoPose
299300
return pose.as_geopandas()
300301

301302

302-
class PoseCollectionPublic(PublicEntityMixin):
303+
class PoseCollectionPublic(PublicEntityMixin, Base):
303304

304305
#: The time of the poses
305306
timestamp: datetime
@@ -320,7 +321,7 @@ def as_tasi(
320321
)
321322

322323

323-
class GeoPoseCollectionPublic(PublicEntityMixin):
324+
class GeoPoseCollectionPublic(PublicEntityMixin, Base):
324325

325326
#: The time of the poses
326327
timestamp: datetime

0 commit comments

Comments
 (0)