From 963a06d2278d768d4d2d986a8c97bf73bf6df416 Mon Sep 17 00:00:00 2001 From: Xevion Date: Tue, 21 Apr 2020 00:51:07 -0500 Subject: [PATCH] organize imports, less of a clusterfuck --- triple-dungeon/main.py | 2 +- triple-dungeon/map.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/triple-dungeon/main.py b/triple-dungeon/main.py index f4a867a..77883e1 100644 --- a/triple-dungeon/main.py +++ b/triple-dungeon/main.py @@ -3,10 +3,10 @@ main.py The main class used to load the game. Holds the main game window, as well as manages basic functions for organizing the game. """ + import collections import random import time - import arcade import math diff --git a/triple-dungeon/map.py b/triple-dungeon/map.py index 10f09b0..8394d7b 100644 --- a/triple-dungeon/map.py +++ b/triple-dungeon/map.py @@ -7,12 +7,10 @@ Pathfinding will also depend on objects here, and is thus integral to it's funct from __future__ import annotations import json - import arcade import numpy as np from itertools import chain - from config import Config