Skip to content
Snippets Groups Projects
Commit e9053ef7 authored by James Johnson's avatar James Johnson
Browse files

flake fixes

parent 653dc393
No related branches found
No related tags found
1 merge request!152Removed __traits_version__ from json files
import json
from traits.api import HasStrictTraits
from collections import Iterable
class WorkflowWriter(HasStrictTraits):
......@@ -108,7 +107,7 @@ def pop_recursive(dictionary, remove_key):
except KeyError:
pass
for key,value in dictionary.items():
for key, value in dictionary.items():
# If remove_key is in the dict, remove it
if isinstance(value, dict):
pop_recursive(value, remove_key)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment