1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-18 04:18:10 +00:00

style(storage): apply isort 5

This commit is contained in:
matejcik 2023-08-15 17:57:02 +02:00 committed by matejcik
parent a2dca91262
commit b008367f38
4 changed files with 5 additions and 3 deletions

View File

@ -3,6 +3,7 @@
from hashlib import sha256
from c.storage import Storage as StorageC
from python.src.storage import Storage as StoragePy

View File

@ -1,4 +1,5 @@
from c.storage import Storage as StorageC
from python.src import prng
from python.src.storage import Storage as StoragePy

View File

@ -1,9 +1,8 @@
import hypothesis.strategies as st
from hypothesis import assume, settings
from hypothesis.stateful import Bundle, RuleBasedStateMachine, invariant, rule
from c0.storage import Storage as StorageC0
from c.storage import Storage as StorageC
from hypothesis import assume, settings
from hypothesis.stateful import Bundle, RuleBasedStateMachine, invariant, rule
from . import common
from .storage_model import StorageModel

View File

@ -1,5 +1,6 @@
from c0.storage import Storage as StorageC0
from c.storage import Storage as StorageC
from python.src.storage import Storage as StoragePy
from . import common