fix(importers): implement abstract method import_venues in GratefulDeadImporter
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s
This commit is contained in:
parent
fb34db3ea3
commit
bac4d3cff6
1 changed files with 4 additions and 0 deletions
|
|
@ -63,6 +63,10 @@ class GratefulDeadImporter(ImporterBase):
|
|||
print(f" • {len(self.song_map)} songs")
|
||||
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]:
|
||||
"""Import all Grateful Dead songs"""
|
||||
print("\n🎵 Importing songs...")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue