Skip to content

Commit 37d83c6

Browse files
committed
Fix flake8
1 parent 81ee2e4 commit 37d83c6

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

brawlstats/core.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def get_club(self, tag: bstag, use_cache=True) -> Club:
259259
A valid club tag.
260260
Valid characters: 0289PYLQGRJCUV
261261
use_cache : bool, optional
262-
Whether to use the internal 3 minutes cache, by default True
262+
Whether to use the internal 3 minutes cache, by default True
263263
264264
Returns
265265
-------
@@ -289,7 +289,10 @@ def get_club_members(self, tag: bstag, use_cache=True) -> Members:
289289
url = '{}/{}/members'.format(self.api.CLUB, tag)
290290
return self._get_model(url, model=Members, use_cache=use_cache)
291291

292-
def get_rankings(self, *, ranking: str, region: str=None, limit: int=200, brawler: Union[str, int]=None, use_cache=True) -> Ranking:
292+
def get_rankings(
293+
self, *, ranking: str, region: str=None, limit: int=200,
294+
brawler: Union[str, int]=None, use_cache=True
295+
) -> Ranking:
293296
"""Gets the top count players/clubs/brawlers.
294297
295298
Parameters

0 commit comments

Comments
 (0)