We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10d5d2c commit a0dcf22Copy full SHA for a0dcf22
src/running/command/runbms.py
@@ -31,6 +31,7 @@
31
from running.command.fillin import fillin
32
import math
33
import yaml
34
+from collections import defaultdict
35
36
if TYPE_CHECKING:
37
from running.plugin.runbms import RunbmsPlugin
@@ -264,9 +265,9 @@ def run_one_benchmark(
264
265
for p in plugins.values():
266
p.start_benchmark(hfac, size, bm)
267
oomed_count: DefaultDict[str, int]
- oomed_count = DefaultDict(int)
268
+ oomed_count = defaultdict(int)
269
timeout_count: DefaultDict[str, int]
- timeout_count = DefaultDict(int)
270
+ timeout_count = defaultdict(int)
271
logged_in_users: Set[str]
272
logged_in_users = get_logged_in_users()
273
if len(logged_in_users) > 1:
0 commit comments