From 95cc3034b8393b6c7d7fa46679056c7c8cd695d4 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Thu, 12 May 2022 08:58:51 -0700 Subject: [PATCH] Clean up unused imports in ai.py --- roguebasin/ai.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/roguebasin/ai.py b/roguebasin/ai.py index eb54f5c..850fc6a 100644 --- a/roguebasin/ai.py +++ b/roguebasin/ai.py @@ -1,14 +1,13 @@ # Eryn Wells import logging -from os import path import random from typing import TYPE_CHECKING, List, Optional import numpy as np import tcod -from .actions import Action, BumpAction, MeleeAction, WaitAction +from .actions import Action, BumpAction, WaitAction from .components import Component from .geometry import Direction, Point from .object import Entity