Skip to content

Commit ddabe8a

Browse files
committed
syntax fix and removing threadsafe
1 parent 36d3480 commit ddabe8a

4 files changed

Lines changed: 2 additions & 15 deletions

File tree

poetry.lock

Lines changed: 1 addition & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ soupsieve = "2.3.2.post1"
3030
termcolor = "1.1.0"
3131
texttable = "1.6.4"
3232
threadpoolctl = "3.1.0"
33-
threadsafe = "1.0.0"
3433
urllib3 = "1.26.17"
3534
validators = "0.20.0"
3635
yattag = "1.14.0"

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ tabulate==0.9.0 ; python_version >= "3.9" and python_full_version <= "3.11.4"
3333
termcolor==1.1.0 ; python_version >= "3.9" and python_full_version <= "3.11.4"
3434
texttable==1.6.4 ; python_version >= "3.9" and python_full_version <= "3.11.4"
3535
threadpoolctl==3.1.0 ; python_version >= "3.9" and python_full_version <= "3.11.4"
36-
threadsafe==1.0.0 ; python_version >= "3.9" and python_full_version <= "3.11.4"
3736
treelib==1.7.0 ; python_version >= "3.9" and python_full_version <= "3.11.4"
3837
unipath==1.1 ; python_version >= "3.9" and python_full_version <= "3.11.4"
3938
urllib3==1.26.17 ; python_version >= "3.9" and python_full_version <= "3.11.4"

torbot/modules/linktree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def _append_node(self, id: str, parent_id: str | None) -> None:
6060
except exceptions.DuplicatedNodeIdError:
6161
logging.debug(f"found a duplicate URL {id}")
6262

63-
def _build_tree(self, url: str, depth: int) -> None:
63+
def _build_tree(self, url: str, depth: int) -> None:
6464
"""
6565
Builds a tree from the root to the given depth.
6666
"""

0 commit comments

Comments
 (0)