summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Smith <zd@zdsmith.com>2018-04-25 21:59:09 -0400
committerZach Smith <zd@zdsmith.com>2018-04-25 21:59:09 -0400
commitf1a50149f96a0ed4c62c3cc7915684ef3e1d263f (patch)
treeadcbdf1edb355a5b5324e221b602a038d8c06be7
parentc7c4c24f287207342eb48dd15578867a14efa335 (diff)
downloadpycco-f1a50149f96a0ed4c62c3cc7915684ef3e1d263f.tar.gz
Very minor style update
-rw-r--r--pycco/languages.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pycco/languages.py b/pycco/languages.py
index cb9edd1..29bf16d 100644
--- a/pycco/languages.py
+++ b/pycco/languages.py
@@ -23,8 +23,7 @@ def lang(name, comment_symbol, multistart=None, multiend=None):
"comment_symbol": comment_symbol
}
if multistart is not None and multiend is not None:
- result["multistart"] = multistart
- result["multiend"] = multiend
+ result.update(multistart=multistart, multiend=multiend)
return result