mirror of
https://github.com/logos-blockchain/logos-blockchain-simulations.git
synced 2026-01-07 15:43:09 +00:00
remove unused imports
This commit is contained in:
parent
200d2847a9
commit
621c6672a8
@ -1,13 +1,13 @@
|
||||
# !/usr/bin/env python
|
||||
import argparse
|
||||
import json
|
||||
import sys
|
||||
import statistics
|
||||
from collections.abc import Iterable
|
||||
from typing import Dict, Optional
|
||||
import statistics
|
||||
import argparse
|
||||
|
||||
import mixlog
|
||||
|
||||
|
||||
class Message:
|
||||
def __init__(self, message_id: str, step_a: Optional[int]):
|
||||
self.id = message_id
|
||||
@ -91,12 +91,12 @@ def build_argument_parser() -> argparse.ArgumentParser:
|
||||
"--step-duration",
|
||||
type=int,
|
||||
default=100,
|
||||
help="Duration (in ms) of each step in the simulation."
|
||||
help="Duration (in ms) of each step in the simulation.",
|
||||
)
|
||||
parser.add_argument(
|
||||
"input_file",
|
||||
nargs="?",
|
||||
help="The file to parse. If not provided, input will be read from stdin."
|
||||
help="The file to parse. If not provided, input will be read from stdin.",
|
||||
)
|
||||
return parser
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user