Skip to content

Commit 2b772f1

Browse files
committed
Use space as default fillChar
1 parent 7716304 commit 2b772f1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

vicutils/printBin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
# Default configuration constants
44
DEFAULT_UNIT_SIZE = 3
5-
DEFAULT_VALUE_FILL_CHAR = "_" # Character used to pad node values (e.g., "_5_")
6-
DEFAULT_CONNECTOR_FILL_CHAR = " " # Character used to fill horizontal gaps between node pairs
5+
DEFAULT_VALUE_FILL_CHAR = " " # Character used to pad node values (e.g., "_5_")
6+
DEFAULT_CONNECTOR_FILL_CHAR = "_" # Character used to fill horizontal gaps between node pairs
77

88

99
class BinaryNode:

0 commit comments

Comments
 (0)