Skip to content

Commit

Permalink
Drop unused/forgotten show_* args from report_bikes
Browse files Browse the repository at this point in the history
Fixes: 25e2093 ("Add options to hide name and firstlast columns")
  • Loading branch information
liskin committed Nov 2, 2023
1 parent 48a31f5 commit 3bbc929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/strava_gear/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def report_components(res: Result) -> Iterator[Dict]:
}


def report_bikes(res: Result, show_names: bool = True, show_firstlasts: bool = True) -> Iterator[Dict]:
def report_bikes(res: Result) -> Iterator[Dict]:
bikes_firstlasts = bikes_firstlast(res)

def sort_key(c: Component):
Expand Down

0 comments on commit 3bbc929

Please sign in to comment.