Skip to content

Commit

Permalink
fix_code_comp
Browse files Browse the repository at this point in the history
  • Loading branch information
danguetta committed Jan 13, 2024
1 parent 9f69c64 commit fdf055b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/process_push.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def update_readme(filename, errors, version='ERROR'):

# Load the Python in the file
with open(PYTHON_FILE) as f:
python_from_file = f.readlines()
python_from_file = [i[:-1] if i[-1] == '\n' else i for i in f.readlines()]

# Load the Python from the Excel
python_from_excel = pd.read_excel(ADDIN_FILE,
Expand Down
6 changes: 3 additions & 3 deletions XLKitLearn.py
Original file line number Diff line number Diff line change
Expand Up @@ -2680,9 +2680,9 @@ def _place_node(self, ax, node_text, node_depth, node_index, tree_depth, boxed=F
This function will place a single node on the tree canvas, given the node
text, its depth, and index. Nodes indexes are determined as follows
1
1 2
1 2 3 4
# 1
# 1 2
# 1 2 3 4
If the node is not the top node, an arrow will be drawn connecting it to the
levels above.
Expand Down
Binary file modified XLKitLearn.xltm
Binary file not shown.

0 comments on commit fdf055b

Please sign in to comment.