diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2019-04-13 18:33:50 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2019-04-13 18:33:50 +0200 |
commit | 5b1f14a09d38f6a9861d3cb1b3cf2b27da04c62e (patch) | |
tree | 0dc5ff9573f378646af415c3e5efacdd2877a20c | |
parent | 3c33ddd2f85ac5475539cd1c5eae2f30fb9e6ea8 (diff) |
flake fixes
-rw-r--r-- | pyapd/config.py | 2 | ||||
-rw-r--r-- | tests/test_objects.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/pyapd/config.py b/pyapd/config.py index 7850eab..8c513b7 100644 --- a/pyapd/config.py +++ b/pyapd/config.py @@ -1,8 +1,8 @@ -from contextlib import contextmanager from typing import Optional import ruamel.yaml + class Config(): def __init__(self, config_fn: Optional[str] = None, **kw): self.config_fn = config_fn diff --git a/tests/test_objects.py b/tests/test_objects.py index 452b4e7..68bc900 100644 --- a/tests/test_objects.py +++ b/tests/test_objects.py @@ -19,4 +19,3 @@ class TestObjects(unittest.TestCase): data = act.to_jsons() self.assertIsInstance(data, str) self.assertIn('"id": "http://example.org/123456"', data) - |