Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,26 @@ classifiers = [

[dependency-groups]
dev = [
"lefthook>=2.0.13",
"lefthook>=2.0.15",
"loguru>=0.7.3",
"mypy>=1.19.1",
"nbstripout>=0.8.2",
"packaging>=25.0",
"nbstripout>=0.9.0",
"packaging>=26.0",
"pytest-freezer>=0.4.9",
"pytest-httpserver>=1.1.3",
"pytest-pretty>=1.3.0",
"pytest-randomly>=4.0.1",
"pytest-timeout>=2.4.0",
"pytest>=9.0.2",
"ruff>=0.14.10",
"ruff>=0.14.14",
"uv-sort>=0.7.0",
]
docs = [
"mike>=2.1.3",
"mkdocs-include-markdown-plugin>=7.2.0",
"mkdocs-include-markdown-plugin>=7.2.1",
"mkdocs-material>=9.7.1",
"mkdocs>=1.6.1",
"mkdocstrings[python]>=1.0.0",
"mkdocstrings[python]>=1.0.2",
]

[tool.uv]
Expand Down
2 changes: 1 addition & 1 deletion src/urlscan/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ def scan_and_get_result(
timeout: float = 60.0,
interval: float = 1.0,
initial_wait: float | None = 10.0,
):
) -> dict:
"""Scan a given URL, wait for a result and get it.

Args:
Expand Down
2 changes: 1 addition & 1 deletion src/urlscan/pro/datadump.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class DataDump(BaseClient):
"""Data dump API client."""

def get_list(self, path: str):
def get_list(self, path: str) -> dict:
"""List available data dump files for a specific time window, file type, and date.

Args:
Expand Down
Loading