about summary refs log tree commit diff homepage
path: root/brutalmaze/misc.py
diff options
context:
space:
mode:
Diffstat (limited to 'brutalmaze/misc.py')
-rw-r--r--brutalmaze/misc.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/brutalmaze/misc.py b/brutalmaze/misc.py
index d58a2ca..ef04502 100644
--- a/brutalmaze/misc.py
+++ b/brutalmaze/misc.py
@@ -17,7 +17,7 @@
 #
 # Copyright (C) 2017 Nguyễn Gia Phong
 
-__doc__ = 'brutalmaze module for hero and enemy classes'
+__doc__ = 'module for miscellaneous functions'
 
 from math import cos, sin, pi
 from random import uniform
@@ -25,8 +25,6 @@ from random import uniform
 import pygame
 from pygame.gfxdraw import filled_polygon, aapolygon
 
-from .constants import MIDDLE
-
 
 def round2(number):
     """Round a number to an int."""