From a60b513e745cda46b48eeb27e7bc3a998ebaac2a Mon Sep 17 00:00:00 2001 From: Zachy Date: Fri, 17 May 2019 02:15:01 +0100 Subject: [PATCH] Fix import order --- minecraft/networking/packets/clientbound/play/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/minecraft/networking/packets/clientbound/play/__init__.py b/minecraft/networking/packets/clientbound/play/__init__.py index b1683e4..2225033 100644 --- a/minecraft/networking/packets/clientbound/play/__init__.py +++ b/minecraft/networking/packets/clientbound/play/__init__.py @@ -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.