ruff: enable FBT rules to detect boolean arguments use without kwargs

This commit is contained in:
Dima Gerasimov 2024-08-27 23:37:17 +01:00 committed by karlicoss
parent 118c2d4484
commit 664c40e3e8
19 changed files with 50 additions and 39 deletions

View file

@ -18,7 +18,7 @@ class FallbackLocation(LocationProtocol):
elevation: Optional[float] = None
datasource: Optional[str] = None # which module provided this, useful for debugging
def to_location(self, end: bool = False) -> Location:
def to_location(self, *, end: bool = False) -> Location:
'''
by default the start date is used for the location
If end is True, the start date + duration is used