diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2020-04-29 09:54:55 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2020-04-29 09:54:55 +0200 |
commit | 4b79b253d268652a1ae7239b564aaff9c2871589 (patch) | |
tree | 9436545560fe8dccbb515b406204468e2d28e6ac /lib/automata.py | |
parent | 4f43ceed98bc8f929facfd6c17f394de8ca1a588 (diff) |
Use relative module paths. PYTHONPATH=lib bin/... is no longer needed
Diffstat (limited to 'lib/automata.py')
-rwxr-xr-x | lib/automata.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/automata.py b/lib/automata.py index 2f893e6..8a43e8f 100755 --- a/lib/automata.py +++ b/lib/automata.py @@ -1,7 +1,7 @@ """Classes and helper functions for PTA and other automata.""" -from functions import AnalyticFunction, NormalizationFunction -from utils import is_numeric +from .functions import AnalyticFunction, NormalizationFunction +from .utils import is_numeric import itertools import numpy as np import json |