Clean up imports and terminal newlines in files according to pylint
This commit is contained in:
parent
372cd5f295
commit
d0a2e2c2ef
4 changed files with 15 additions and 9 deletions
|
@ -2,14 +2,16 @@
|
|||
# Eryn Wells <eryn@erynwells.me>
|
||||
|
||||
import logging
|
||||
import numpy as np
|
||||
import random
|
||||
import tcod
|
||||
from .geometry import Direction, Point, Rect, Size
|
||||
from .tile import Empty, Floor, Shroud, Wall
|
||||
from dataclasses import dataclass
|
||||
from typing import Iterator, List, Optional
|
||||
|
||||
import numpy as np
|
||||
import tcod
|
||||
|
||||
from .geometry import Direction, Point, Rect, Size
|
||||
from .tile import Empty, Floor, Shroud, Wall
|
||||
|
||||
LOG = logging.getLogger('map')
|
||||
|
||||
class Map:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue