コード例 #1
0
ファイル: maps.py プロジェクト: SuRoryz/surbot-osu
 def addLastNP(cls, beatmap: int) -> None:
     # Delete from np last song
     cls.execute(Executor.delete('np'))
     # Insert to np last song
     cls.addMap(beatmap, 'np')
コード例 #2
0
ファイル: maps.py プロジェクト: SuRoryz/surbot-osu
 def truncateTable(cls, table: str = 'month') -> None:
     cls.execute(Executor.delete(table))