aboutsummaryrefslogtreecommitdiffstats
path: root/uritemplate
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2015-10-04 12:17:10 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2015-10-04 12:17:10 -0500
commit583bd44cae66052412b2e976dd8d63fc671986eb (patch)
treedca9ffc4d0d1aa0c0beae9ad072f6b7cdf7598ff /uritemplate
parent4202ee3617e54bf541380629a7234e476fec894a (diff)
downloadplatform_external_python_uritemplates-583bd44cae66052412b2e976dd8d63fc671986eb.tar.gz
platform_external_python_uritemplates-583bd44cae66052412b2e976dd8d63fc671986eb.tar.bz2
platform_external_python_uritemplates-583bd44cae66052412b2e976dd8d63fc671986eb.zip
Clean up flake8 violations
Diffstat (limited to 'uritemplate')
-rw-r--r--uritemplate/variable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/uritemplate/variable.py b/uritemplate/variable.py
index 077ad21..a17c2e1 100644
--- a/uritemplate/variable.py
+++ b/uritemplate/variable.py
@@ -112,7 +112,7 @@ class URIVariable(object):
(name, {'explode': explode, 'prefix': prefix})
)
- self.variable_names = [name for (name, _) in self.variables]
+ self.variable_names = [varname for (varname, _) in self.variables]
def post_parse(self):
"""Set ``start``, ``join_str`` and ``safe`` attributes.