Skip to content

Commit

Permalink
Update dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwager committed Aug 28, 2024
1 parent e1244cb commit ad1eb3a
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 103 deletions.
6 changes: 3 additions & 3 deletions fierce/fierce.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ def print_subdomain_result(url, ip, http_connection_headers=None, nearby=None, s
def unvisited_closure():
visited = set()

def inner(l):
def inner(inner_visited):
nonlocal visited
result = set(l).difference(visited)
visited.update(l)
result = set(inner_visited).difference(visited)
visited.update(inner_visited)
return result

return inner
Expand Down
139 changes: 44 additions & 95 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.8.1"
dnspython = "1.16.0"

[tool.poetry.group.dev.dependencies]
pytest = "6.2.5"
pytest-cov = "3.0.0"
flake8 = "3.7.7"
pyfakefs = "5.6.0"
pytest = "^8.3.0"
pytest-cov = "^5.0.0"
flake8 = "^7.1.0"
pyfakefs = "^5.6.0"

[tool.poetry.group.dev]
optional = true
Expand Down

0 comments on commit ad1eb3a

Please sign in to comment.