diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2018-01-10 15:07:15 +0100 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2018-01-10 15:07:15 +0100 |
commit | 989c93ab0b9486aa3db579395a273a94e46ee2ca (patch) | |
tree | ad94b0c4849cf4563990e657b800337bc610f08d | |
parent | 11c4d4713ee1f85a8ad893067c3312e60307cffe (diff) |
canonicalize: oops, missed a spot
-rw-r--r-- | canonicalize/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/canonicalize/__init__.py b/canonicalize/__init__.py index 7c4ef79..25a2ff8 100644 --- a/canonicalize/__init__.py +++ b/canonicalize/__init__.py @@ -57,7 +57,7 @@ def canonicalize(code, problem_name=None, given_names=None): ] varmap = {} - tree = propogateMetadata(tree, {'foo': ['int', 'int']}, varmap, [0]) + tree = propogateMetadata(tree, {}, varmap, [0]) tree = simplify(tree) imports = getAllImportStatements(tree) |