Skip to content

Commit

Permalink
fix: lint driven fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
evilsocket committed Jan 21, 2025
1 parent 9f23039 commit f3ac36f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dyana/loaders/base/dyana.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(self, gpu: bool = False):
self._disk: dict[str, int] = {"start": get_disk_usage()}
self._ram: dict[str, int] = {"start": get_peak_rss()}
self._gpu: dict[str, list[dict[str, t.Any]]] = {"start": get_gpu_usage()} if gpu else {}
self._network: dict[str, dict[str, int]] = {"start": get_network_stats()}
self._network: dict[str, dict[str, dict[str, int]]] = {"start": get_network_stats()}
self._imports_at_start = get_current_imports()
self._additionals: dict[str, t.Any] = {}

Expand Down

0 comments on commit f3ac36f

Please sign in to comment.