Skip to content

Commit 7763cd4

Browse files
committed
Edit setup links
1 parent ab1f3f1 commit 7763cd4

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# [PythonSolutions](https://vic-nas.github.io/PythonSolutions/)
22

3+
## [Documentation](https://vic-nas.github.io/PythonSolutions/vicutils/printBin.html)
4+
35
A collection of programming problem solutions and python package
46

57
## ✍️ Solution Style

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
description="Utility functions for Python programming",
1717
long_description=long_description,
1818
long_description_content_type="text/markdown",
19-
url="https://github.com/Vic-Nas/PythonSolutions", # Your repo
19+
url="https://vic-nas.github.io/PythonSolutions/",
2020
project_urls={
2121
"Documentation": "https://vic-nas.github.io/PythonSolutions/vicutils/printBin.html",
2222
"Source": "https://github.com/Vic-Nas/PythonSolutions",

vicutils/printBin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,4 +223,4 @@ def nodeToString(node: BinaryNode, depth=-1, fillChar=None, unitSize=None, remov
223223
A string representation of the tree with each row on a new line
224224
"""
225225
mat = nodeToMat(node, depth=depth, fillChar=fillChar, unitSize=unitSize, removeEmpty=removeEmpty)
226-
return "\n".join("".join(row) for row in mat)
226+
return "\n".join("".join(row) for row in mat)

0 commit comments

Comments
 (0)