Added missing import statements.

This commit is contained in:
Amy Wooding 2016-07-16 19:32:57 -04:00
parent e367ee54e4
commit 21b993de08
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,8 @@ import collections
from math import ceil
from kivy.uix.label import Label
from kivy.graphics import Color, Ellipse, Line
import kivy.utils
MapCoords = collections.namedtuple('MapCoords', ['row', 'col'])