Skip to content

Commit

Permalink
fix: use server categories in cli report
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Jan 9, 2025
1 parent 96958ab commit e094d95
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions aw_client/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import aw_client

from . import queries
from .classes import default_classes
from .classes import default_classes, get_classes

now = datetime.now(timezone.utc)
td1day = timedelta(days=1)
Expand Down Expand Up @@ -158,10 +158,7 @@ def report(

bid_browsers: List[str] = []

# TODO: Allow loading from toml
logger.info("Using default classes")
classes = default_classes

classes = get_classes()
params = queries.DesktopQueryParams(
bid_browsers=bid_browsers,
classes=classes,
Expand Down

0 comments on commit e094d95

Please sign in to comment.