summaryrefslogtreecommitdiff
path: root/opendc/models/trace.py
diff options
context:
space:
mode:
Diffstat (limited to 'opendc/models/trace.py')
-rw-r--r--opendc/models/trace.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/opendc/models/trace.py b/opendc/models/trace.py
index 2f5e33cd..f6d2e1c1 100644
--- a/opendc/models/trace.py
+++ b/opendc/models/trace.py
@@ -2,12 +2,7 @@ from opendc.models.model import Model
class Trace(Model):
- JSON_TO_PYTHON_DICT = {
- 'Trace': {
- 'id': 'id',
- 'name': 'name'
- }
- }
+ JSON_TO_PYTHON_DICT = {'Trace': {'id': 'id', 'name': 'name'}}
COLLECTION_NAME = 'traces'
COLUMNS = ['id', 'name']