Skip to content

Commit

Permalink
[refactor] Add Type Annotation to event_data in ClientCli Class
Browse files Browse the repository at this point in the history
Signed-off-by: alexstroke <111361420+astrokov7@users.noreply.github.com>
  • Loading branch information
AlexStroke committed Mar 11, 2024
1 parent 789f409 commit 5f7c05f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client_cli/pytests/src/client_cli/client_cli.py
Expand Up @@ -10,7 +10,7 @@
from json import JSONDecoder
from pathlib import Path
from time import monotonic, sleep
from typing import Callable
from typing import Callable, Dict, Any

import allure # type: ignore

Expand Down Expand Up @@ -43,7 +43,7 @@ def __init__(self, config: Config):
self.stderr = None
self.transaction_hash = None
self._timeout = 20
self.event_data = {}
self.event_data: Dict[str, Any] = {}
self.event_data_lock = threading.Lock()
self.should_continue_listening = True

Expand Down

0 comments on commit 5f7c05f

Please sign in to comment.