Skip to content

Commit

Permalink
chore: vacuumメソッドを削除
Browse files Browse the repository at this point in the history
  • Loading branch information
yupix committed Oct 29, 2023
1 parent 7364dcf commit e402026
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions mipac/actions/admins/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,6 @@ async def get_meta(self, detail: bool = False) -> AdminMeta:
)
return AdminMeta(res, client=self.__client)

async def vacuum(self, full: bool = False, analyze: bool = False) -> bool:
body = {"full": full, "analyze": analyze}
return bool(
await self.__session.request(Route("POST", "/api/admin/vacuum"), auth=True, json=body)
)

async def update_user_note(self, user_id: str, text: str) -> bool:
"""
Update user note
Expand Down

0 comments on commit e402026

Please sign in to comment.