From 888ad29be0bfaaa9a361ec4cae3755b59b71dadb Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Thu, 15 Jan 2015 13:32:33 +0100 Subject: Use relative imports in monkey modules --- monkey/edits.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'monkey/edits.py') diff --git a/monkey/edits.py b/monkey/edits.py index fef591a..349ebf7 100644 --- a/monkey/edits.py +++ b/monkey/edits.py @@ -2,10 +2,10 @@ import collections -from action import expand, parse -from graph import Node -from prolog.util import rename_vars, stringify, tokenize -from util import get_line +from .action import expand, parse +from .graph import Node +from .prolog.util import rename_vars, stringify, tokenize +from .util import get_line # A line edit is a contiguous sequences of actions within a single line. This # function takes a sequence of actions and builds a directed acyclic graph -- cgit v1.2.1