Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 304859e

Browse files
committed
STY: Add trailing commas
This makes the next commit easier to follow
1 parent 111c031 commit 304859e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/mpl_toolkits/mplot3d/axes3d.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2455,42 +2455,42 @@ def bar3d(self, x, y, z, dx, dy, dz, color=None,
24552455
(0, 0, 0),
24562456
(1, 0, 0),
24572457
(1, 1, 0),
2458-
(0, 1, 0)
2458+
(0, 1, 0),
24592459
),
24602460
# +z
24612461
(
24622462
(0, 0, 1),
24632463
(1, 0, 1),
24642464
(1, 1, 1),
2465-
(0, 1, 1)
2465+
(0, 1, 1),
24662466
),
24672467
# -y
24682468
(
24692469
(0, 0, 0),
24702470
(1, 0, 0),
24712471
(1, 0, 1),
2472-
(0, 0, 1)
2472+
(0, 0, 1),
24732473
),
24742474
# +y
24752475
(
24762476
(0, 1, 0),
24772477
(1, 1, 0),
24782478
(1, 1, 1),
2479-
(0, 1, 1)
2479+
(0, 1, 1),
24802480
),
24812481
# -x
24822482
(
24832483
(0, 0, 0),
24842484
(0, 1, 0),
24852485
(0, 1, 1),
2486-
(0, 0, 1)
2486+
(0, 0, 1),
24872487
),
24882488
# +x
24892489
(
24902490
(1, 0, 0),
24912491
(1, 1, 0),
24922492
(1, 1, 1),
2493-
(1, 0, 1)
2493+
(1, 0, 1),
24942494
),
24952495
])
24962496

0 commit comments

Comments
 (0)