summaryrefslogtreecommitdiff
path: root/opendc/util/path_parser.py
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-26 22:50:27 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-26 22:50:27 +0200
commit4c6d68dd2e460095e20ba32007a35da4c5e6dae6 (patch)
tree13eeab79298913ee177e428519bc18fed5356efa /opendc/util/path_parser.py
parent44f0bd378763f4c481fb8a87847ca84469b35a67 (diff)
Fix more PEP-8 violations
Diffstat (limited to 'opendc/util/path_parser.py')
-rw-r--r--opendc/util/path_parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/opendc/util/path_parser.py b/opendc/util/path_parser.py
index 7948ee1b..a8bbdeba 100644
--- a/opendc/util/path_parser.py
+++ b/opendc/util/path_parser.py
@@ -36,4 +36,4 @@ def parse(version, endpoint_path):
except:
parameters[name.strip('{}')] = value
- return ('{}/{}'.format(version, '/'.join(path)), parameters)
+ return '{}/{}'.format(version, '/'.join(path)), parameters