Skip to content

Commit 404b304

Browse files
committed
linting
1 parent ddefb1b commit 404b304

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

chainbench/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -385,13 +385,13 @@ def start(
385385
)
386386

387387
if list(test_data_types)[0] == "SolanaTestData":
388-
user_class = SolanaUser
388+
user: type[SolanaUser] | type[EvmUser] = SolanaUser
389389
else:
390-
user_class = EvmUser
390+
user = EvmUser
391391

392392
unique_monitors: set[str] = set(monitor)
393393
for m in unique_monitors:
394-
p = Process(target=monitors[m], args=(user_class, target, results_path, test_time))
394+
p = Process(target=monitors[m], args=(user, target, results_path, test_time))
395395
click.echo(f"Starting monitor {m}")
396396
p.start()
397397
ctx.obj.monitors.append(p)

0 commit comments

Comments
 (0)