Skip to content
Snippets Groups Projects
Commit f5ff1386 authored by Bartek Wrona's avatar Bartek Wrona
Browse files

Removed not needed type ignoring directive

parent 1e51376f
No related branches found
No related tags found
1 merge request!252Update to Ubuntu24.04
...@@ -11,7 +11,7 @@ if TYPE_CHECKING: ...@@ -11,7 +11,7 @@ if TYPE_CHECKING:
ExecutableAvailableNames = Literal["hived", "cli_wallet", "get_dev_key", "compress_block_log", "block_log_util"] ExecutableAvailableNames = Literal["hived", "cli_wallet", "get_dev_key", "compress_block_log", "block_log_util"]
NodeTypesReturnType = Literal["testnet", "mirrornet", "mainnet"] NodeTypesReturnType = Literal["testnet", "mirrornet", "mainnet"]
NodeTypes: tuple[str, str, str] = get_args(NodeTypesReturnType) # type: ignore[assignment] NodeTypes: tuple[str, str, str] = get_args(NodeTypesReturnType)
class Executable: class Executable:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment