no subs
This commit is contained in:
parent
c7a879659e
commit
f756122128
1 changed files with 4 additions and 0 deletions
|
|
@ -46,6 +46,10 @@ def output_summary(subscriptions: List[Subscription]) -> None:
|
|||
-------
|
||||
Output summary to print
|
||||
"""
|
||||
if len(subscriptions) == 0:
|
||||
logger.info("No subscriptions ran")
|
||||
return
|
||||
|
||||
summary: List[str] = []
|
||||
|
||||
# Initialize totals to 0
|
||||
|
|
|
|||
Loading…
Reference in a new issue