Skip to content

Commit

Permalink
Pass window to report function
Browse files Browse the repository at this point in the history
  • Loading branch information
hancush committed Sep 11, 2024
1 parent 108272c commit a6517de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pupa/cli/commands/clean.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def handle(self, args, other):
"These objects have not been seen in a scrape within the last"
f" {args.window} days:"
)
self.report_stale_objects()
self.report_stale_objects(args.window)
else:
stale_objects = list(self.get_stale_objects(args.window))
num_stale_objects = len(stale_objects)
Expand Down

0 comments on commit a6517de

Please sign in to comment.