initialize field

This commit is contained in:
Georges-Antoine Assi
2025-09-23 18:23:08 -04:00
parent 968e0c3560
commit 91fb6f6f23
2 changed files with 5 additions and 1 deletions

View File

@@ -62,7 +62,7 @@ jobs:
uv run pytest -vv --maxfail=10 --junitxml=pytest-report.xml --cov --cov-report xml:coverage.xml --cov-config=.coveragerc .
- name: Publish test results
uses: EnricoMi/publish-unit-test-result-action/linux@sha-3a74b29
uses: EnricoMi/publish-unit-test-result-action/linux@v2.20.0
if: (!cancelled())
with:
files: |

View File

@@ -247,6 +247,10 @@ class Rom(BaseModel):
back_populates="roms",
)
def __init__(self, *args: Any, **kwargs: Any) -> None:
super().__init__(*args, **kwargs)
self._is_identifying = False
@property
def platform_slug(self) -> str:
return self.platform.slug