Fix import order

This commit is contained in:
Zachy 2019-05-17 02:15:01 +01:00
parent 93f6d269da
commit a60b513e74

View File

@ -3,8 +3,8 @@ from minecraft.networking.packets import (
)
from minecraft.networking.types import (
Integer, FixedPointInteger, UnsignedByte, Byte, Boolean, UUID, Short,
VarInt, Double, Float, String, Enum, Difficulty, Dimension, GameMode, Angle
Integer, FixedPointInteger, Angle, UnsignedByte, Byte, Boolean, UUID,
Short, VarInt, Double, Float, String, Enum, Difficulty, Dimension, GameMode
)
from .combat_event_packet import CombatEventPacket
@ -15,7 +15,7 @@ from .spawn_object_packet import SpawnObjectPacket
from .block_change_packet import BlockChangePacket, MultiBlockChangePacket
from .explosion_packet import ExplosionPacket
from .sound_effect_packet import SoundEffectPacket
from . face_player_packet import FacePlayerPacket
from .face_player_packet import FacePlayerPacket
# Formerly known as state_playing_clientbound.