Skip to content

Commit

Permalink
Merge pull request #75 from cityofaustin/dev
Browse files Browse the repository at this point in the history
Add list comprehension string typing for connection (v1.0.14)
  • Loading branch information
johnclary authored Nov 18, 2020
2 parents bbd9799 + 0db777f commit 131c1e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion knackpy/formatters.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ def connection(value):
# expecting a list of dicts like so:
# [{'id': '5e7b63a0c279e606c645be7d', 'identifier': 'Some String'}]
identifiers = [conn["identifier"] for conn in value]
return ", ".join(identifiers)
return ", ".join(str(v) for v in identifiers)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def build_config(env, readme="README.md"):
"packages": ["knackpy"],
"tests_require": ["pytest", "coverage"],
"url": "http://github.com/cityofaustin/knackpy",
"version": "1.0.13",
"version": "1.0.14",
}


Expand Down

0 comments on commit 131c1e8

Please sign in to comment.