Skip to content

Commit

Permalink
Temporarily added back in [Solo] tag so I can cut a release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kraust committed Mar 5, 2024
1 parent 44ca72e commit 08030c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OSCRUI/leagueconnector.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def fetch_and_insert_maps(self):
if ladders is not None:
self.widgets.ladder_map.clear()
for ladder in ladders.results:
solo = '' # '[Solo] ' if ladder.is_solo else ''
solo = '[Solo] ' if ladder.is_solo else ''
key = f'{solo}{ladder.metric} - {ladder.name} ({ladder.difficulty})'
self.league_api.ladder_dict[key] = ladder
self.widgets.ladder_map.addItem(key)
Expand Down

0 comments on commit 08030c8

Please sign in to comment.