mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-04-17 21:30:18 +00:00
fix: St3ScoreParser
This commit is contained in:
parent
de8efbeaf1
commit
5744aad8b6
@ -1,2 +1,3 @@
|
||||
from .packlist import PacklistParser
|
||||
from .songlist import SonglistDifficultiesParser, SonglistParser
|
||||
from .st3 import St3ScoreParser
|
||||
|
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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user