Skip to content

Commit b6f9d85

Browse files
committed
fix: sort imports in vmm-cli.py to pass ruff isort check
1 parent ec0df8a commit b6f9d85

1 file changed

Lines changed: 8 additions & 9 deletions

File tree

vmm/src/vmm-cli.py

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,24 @@
44
#
55
# SPDX-License-Identifier: Apache-2.0
66

7-
import os
8-
import sys
9-
import json
107
import argparse
8+
import base64
119
import hashlib
10+
import http.client
11+
import json
12+
import os
1213
import re
1314
import socket
14-
import http.client
15-
import urllib.parse
1615
import ssl
17-
import base64
18-
19-
from typing import Optional, Dict, List, Tuple, Union, BinaryIO, Any
16+
import sys
17+
import urllib.parse
18+
from typing import Any, BinaryIO, Dict, List, Optional, Tuple, Union
2019

2120
# Optional cryptography imports - only needed for encrypted environment variables
2221
try:
22+
from cryptography.hazmat.primitives import serialization
2323
from cryptography.hazmat.primitives.asymmetric import x25519
2424
from cryptography.hazmat.primitives.ciphers.aead import AESGCM
25-
from cryptography.hazmat.primitives import serialization
2625
from eth_keys import keys
2726
from eth_utils import keccak
2827

0 commit comments

Comments
 (0)