One true import-style
[naja.git] / naja / widgets / board.py
index 1f59f015f1cb1eacd5bb68de952986942c160b3c..ac53d5dd9c58f361a044588f89cf6d7f25e147c0 100644 (file)
@@ -3,9 +3,8 @@ Widget that holds the game tiles.
 """
 
 from naja.constants import BOARD_SIZE, TILE_SIZE
-
-from .base import Widget
-from .tile import TileWidget
+from naja.widgets.base import Widget
+from naja.widgets.tile import TileWidget
 
 
 class BoardWidget(Widget):