Compare commits

...

2 Commits
20 ... 22

Author SHA1 Message Date
c8926cf887 [scrobbles] Fix bug in mixin import 2025-08-03 11:33:44 -04:00
b8dd3ee258 [tests] Shim to fix broken import 2025-08-03 11:13:23 -04:00
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import pytest import pytest
from scrobbles.dataclasses import BoardGameLogData, BoardGameScoreLogData #from scrobbles.dataclasses import BoardGameLogData, BoardGameScoreLogData
@pytest.mark.skip("Need to get local tests running working again") @pytest.mark.skip("Need to get local tests running working again")

View File

@ -111,9 +111,9 @@ class ScrobblableMixin(TimeStampedModel):
@property @property
def logdata_cls(self) -> None: def logdata_cls(self) -> None:
from scrobbles.dataclasses import ScrobbleLogData from scrobbles.dataclasses import BaseLogData
return ScrobbleLogData return BaseLogData
@property @property
def subtitle(self) -> str: def subtitle(self) -> str: