diff options
author | SpitfireX <timm.weber@me.com> | 2015-08-12 05:26:46 +0200 |
---|---|---|
committer | SpitfireX <timm.weber@me.com> | 2015-08-12 05:26:46 +0200 |
commit | b521507024a38cf4c26f454be670281b357816dd (patch) | |
tree | 529e00539281848bd9d7e7be8e44203552693a4e | |
parent | 3650968ecf576fceae841f0ccd72cd8459b4aa01 (diff) |
Fixed missing import for random
Seems like someone forgot to check all dependencies while refactoring...
-rw-r--r-- | strategy.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/strategy.py b/strategy.py index 1f1995f..28aaa60 100644 --- a/strategy.py +++ b/strategy.py @@ -1,6 +1,7 @@ import math from interval_utils import * import gui +import random class Strategy: def __init__(self): |