mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-07-01 12:16:26 +00:00
fix: St3ScoreParser
This commit is contained in:
2
src/arcaea_offline/external/arcaea/st3.py
vendored
2
src/arcaea_offline/external/arcaea/st3.py
vendored
@ -11,7 +11,7 @@ class St3ScoreParser(ArcaeaParser):
|
||||
def __init__(self, filepath):
|
||||
super().__init__(filepath)
|
||||
|
||||
def get_score_items(self) -> List[Score]:
|
||||
def parse(self) -> List[Score]:
|
||||
items = []
|
||||
with sqlite3.connect(self.filepath) as st3_conn:
|
||||
cursor = st3_conn.cursor()
|
||||
|
Reference in New Issue
Block a user