Skip to content

Commit

Permalink
tox
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSpuddy committed Nov 14, 2024
1 parent bf81e1a commit 02561ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/disputable_values_monitor/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
from disputable_values_monitor.utils import format_values
from disputable_values_monitor.utils import get_logger
from disputable_values_monitor.utils import get_tx_explorer_url
from disputable_values_monitor.utils import Topics
from disputable_values_monitor.utils import select_account
from disputable_values_monitor.utils import Topics

warnings.simplefilter("ignore", UserWarning)
price_aggregator_logger = logging.getLogger("telliot_feeds.sources.price_aggregator")
Expand Down
4 changes: 3 additions & 1 deletion src/disputable_values_monitor/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ def clear_console() -> None:
_ = os.system("clear")


def select_account(cfg: TelliotConfig, account: Optional[str], password: Optional[str], skip_confirmations: Optional[bool]) -> Optional[ChainedAccount]:
def select_account(
cfg: TelliotConfig, account: Optional[str], password: Optional[str], skip_confirmations: Optional[bool]
) -> Optional[ChainedAccount]:
"""Select an account for disputing, allow no account to be chosen."""

if account is not None:
Expand Down

0 comments on commit 02561ef

Please sign in to comment.