Added import enum.auto to mapgeneration.randomwalk

This commit is contained in:
Charles Peyrat 2020-12-06 23:55:57 +01:00
parent 3717429549
commit 32e6eab943
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
from enum import Enum from enum import auto, Enum
from random import choice, random, randint from random import choice, random, randint
from dungeonbattle.interfaces import Map, Tile from dungeonbattle.interfaces import Map, Tile