fix(importers): implement abstract method import_venues in GratefulDeadImporter
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s

This commit is contained in:
fullsizemalt 2025-12-29 22:43:20 -08:00
parent fb34db3ea3
commit bac4d3cff6

View file

@ -63,6 +63,10 @@ class GratefulDeadImporter(ImporterBase):
print(f"{len(self.song_map)} songs") print(f"{len(self.song_map)} songs")
print(f"{len(self.show_map)} shows") print(f"{len(self.show_map)} shows")
def import_venues(self) -> Dict[str, int]:
"""Import venues (handled during show import for GD)"""
return self.venue_map
def import_songs(self) -> Dict[str, int]: def import_songs(self) -> Dict[str, int]:
"""Import all Grateful Dead songs""" """Import all Grateful Dead songs"""
print("\n🎵 Importing songs...") print("\n🎵 Importing songs...")