diff --git a/titles/ongeki/schema/static.py b/titles/ongeki/schema/static.py index bf4af07..f390959 100644 --- a/titles/ongeki/schema/static.py +++ b/titles/ongeki/schema/static.py @@ -604,13 +604,6 @@ class OngekiStaticData(BaseData): return None return result.fetchall() - async def get_opts(self) -> Optional[List[Row]]: - result = await self.execute(opts.select()) - - if result is None: - return None - return result.fetchall() - async def set_opt_enabled(self, opt_id: int, enabled: bool) -> bool: result = await self.execute(opts.update(opts.c.id == opt_id).values(isEnable=enabled))