Skip to content

Commit

Permalink
Allow keyword-only arguments of public methods to be positional
Browse files Browse the repository at this point in the history
  • Loading branch information
monosans committed Nov 26, 2022
1 parent f83fb14 commit 4f1b308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiopywttr/_wttr.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Wttr:
__slots__ = ("location", "session")

def __init__(
self, location: str, *, session: Optional[ClientSession] = None
self, location: str, session: Optional[ClientSession] = None
) -> None:
self.location = location
self.session = session
Expand Down

0 comments on commit 4f1b308

Please sign in to comment.