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 b3c9f05

Browse filesBrowse files
committed
STY: Add trailing commas
This makes the next commit easier to follow
1 parent a78790b commit b3c9f05
Copy full SHA for b3c9f05

File tree

Expand file treeCollapse file tree

1 file changed

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

1 file changed

+6
-6
lines changed

‎lib/mpl_toolkits/mplot3d/axes3d.py

Copy file name to clipboardExpand all lines: lib/mpl_toolkits/mplot3d/axes3d.py
+6-6Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2439,42 +2439,42 @@ def bar3d(self, x, y, z, dx, dy, dz, color=None,
24392439
(0, 0, 0),
24402440
(1, 0, 0),
24412441
(1, 1, 0),
2442-
(0, 1, 0)
2442+
(0, 1, 0),
24432443
),
24442444
# +z
24452445
(
24462446
(0, 0, 1),
24472447
(1, 0, 1),
24482448
(1, 1, 1),
2449-
(0, 1, 1)
2449+
(0, 1, 1),
24502450
),
24512451
# -y
24522452
(
24532453
(0, 0, 0),
24542454
(1, 0, 0),
24552455
(1, 0, 1),
2456-
(0, 0, 1)
2456+
(0, 0, 1),
24572457
),
24582458
# +y
24592459
(
24602460
(0, 1, 0),
24612461
(1, 1, 0),
24622462
(1, 1, 1),
2463-
(0, 1, 1)
2463+
(0, 1, 1),
24642464
),
24652465
# -x
24662466
(
24672467
(0, 0, 0),
24682468
(0, 1, 0),
24692469
(0, 1, 1),
2470-
(0, 0, 1)
2470+
(0, 0, 1),
24712471
),
24722472
# +x
24732473
(
24742474
(1, 0, 0),
24752475
(1, 1, 0),
24762476
(1, 1, 1),
2477-
(1, 0, 1)
2477+
(1, 0, 1),
24782478
),
24792479
])
24802480

0 commit comments

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