Formatting and stuff

This commit is contained in:
2024-02-23 11:07:50 +01:00
parent 8951837d04
commit d7fa8945d1
13 changed files with 28 additions and 35 deletions

View File

@@ -1,11 +1,11 @@
from abc import abstractmethod
from typing import TypedDict
from .. import BaseEngine
from ..BaseEngine import BaseEngine
class BaseMetadataEngine(BaseEngine):
def __init__(self, **kwargs) -> None:
super().__init__()
...
@abstractmethod

View File

@@ -10,6 +10,7 @@ class ShortsMetadataEngine(BaseMetadataEngine):
num_options = 0
def __init__(self, **kwargs) -> None:
super().__init__(**kwargs)
...
def get_metadata(self):