File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed
Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 4141router = APIRouter ()
4242oauth2_scheme = HTTPBearer (auto_error = False )
4343
44- # NOTE: the api is still under design and is subject to change.
45- # to keep up with breaking changes, please either join our discord,
46- # or keep up with changes to https://github.com/JKBGL/gulag-api-docs.
44+ # NOTE: The V1 APIs should not be used if a V2 API is available.
45+ # These APIs may be deprecated in the future.
4746
4847# Unauthorized (no api key required)
4948# GET /search_players: returns a list of matching users, based on a passed string, sorted by ascending ID.
Original file line number Diff line number Diff line change @@ -35,10 +35,6 @@ def make_safe_name(name: str) -> str:
3535 return name .lower ().replace (" " , "_" )
3636
3737
38- def determine_highest_ranking_clan_member (members : list [User ]) -> User :
39- return next (iter (sorted (members , key = lambda m : m ["clan_priv" ], reverse = True )))
40-
41-
4238def _download_achievement_images_osu (achievements_path : Path ) -> bool :
4339 """Download all used achievement images (one by one, from osu!)."""
4440 achs : list [str ] = []
You can’t perform that action at this time.
0 commit comments