Fix import order

This commit is contained in:
Yohann D'ANELLO
2021-01-10 11:25:53 +01:00
parent 94c12541ef
commit d738029335
17 changed files with 66 additions and 64 deletions

View File

@ -3,12 +3,12 @@
import curses
from .display import Display
from ..entities.items import Monocle
from ..entities.player import Player
from ..game import Game
from ..interfaces import FightingEntity
from ..translations import gettext as _
from .display import Display
class StatsDisplay(Display):