Skip to content

Commit 3d9a3e4

Browse files
author
Vic-Nas
committed
Auto-generate docs and bump version to 0.20 [skip ci]
1 parent 97e9b4d commit 3d9a3e4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.19
1+
0.20

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name="vicutils",
9-
version="0.19",
9+
version="0.20",
1010
packages=find_packages(),
1111
install_requires=[],
1212

vicutils/printBin.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ <h2 id="returns">Returns</h2>
193193
# Calculate parent position (should not be overwritten)
194194
parentCol = (prevValueIndexes[i] + prevValueIndexes[i + 1]) // 2
195195
# Fill columns between children (inclusive), except parent position
196-
for col in range(prevValueIndexes[i], prevValueIndexes[i + 1] + 1):
196+
for col in range(prevValueIndexes[i] + 1, prevValueIndexes[i + 1]):
197197
if col != parentCol:
198198
mat[level][col] = center(&#34;&#34;, unitSize=unitSize, fillChar=connectorFillChar)
199199

0 commit comments

Comments
 (0)