Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9953965

Browse filesBrowse files
committed
Remove trailing comma. after unpacked list args in func call (*args). Syntax error in Python 2.
1 parent 9801c41 commit 9953965
Copy full SHA for 9953965

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎shapefile.py

Copy file name to clipboardExpand all lines: shapefile.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2338,7 +2338,7 @@ def __shpRecord(self, s):
23382338
f.write(
23392339
pack(
23402340
"<%sd" % len(s.m),
2341-
*[m if m is not None else NODATA for m in s.m],
2341+
*[m if m is not None else NODATA for m in s.m]
23422342
)
23432343
)
23442344
else:

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.