Cosmetic: fix timelord import sort order (#9441)

As introduced by the previous commit
ae8bdbc3c7.
This commit is contained in:
xchdata.io 2022-01-11 06:01:28 +01:00 committed by GitHub
parent 8610ab704a
commit 1495d40ff3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,12 +2,13 @@ import asyncio
import dataclasses import dataclasses
import io import io
import logging import logging
import os
import random import random
import time import time
import traceback import traceback
import os from concurrent.futures import ProcessPoolExecutor
from typing import Callable, Dict, List, Optional, Tuple, Set from typing import Callable, Dict, List, Optional, Set, Tuple
from chia.util.streamable import Streamable, streamable
from chiavdf import create_discriminant, prove from chiavdf import create_discriminant, prove
from chia.consensus.constants import ConsensusConstants from chia.consensus.constants import ConsensusConstants
@ -32,7 +33,7 @@ from chia.types.blockchain_format.sub_epoch_summary import SubEpochSummary
from chia.types.blockchain_format.vdf import VDFInfo, VDFProof from chia.types.blockchain_format.vdf import VDFInfo, VDFProof
from chia.types.end_of_slot_bundle import EndOfSubSlotBundle from chia.types.end_of_slot_bundle import EndOfSubSlotBundle
from chia.util.ints import uint8, uint16, uint32, uint64, uint128 from chia.util.ints import uint8, uint16, uint32, uint64, uint128
from concurrent.futures import ProcessPoolExecutor from chia.util.streamable import Streamable, streamable
log = logging.getLogger(__name__) log = logging.getLogger(__name__)