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
2 changes: 1 addition & 1 deletion censys/search/v2/certs.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def raw_search(
**kwargs,
)

def search( # type: ignore[override]
def search(
self,
query: str,
per_page: int = 50,
Expand Down
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,14 @@ python_version = "3.9"
files = ["censys"]
namespace_packages = true
explicit_package_bases = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
strict_equality = true
extra_checks = true
no_implicit_reexport = true
check_untyped_defs = true
disallow_untyped_decorators = true

[[tool.mypy.overrides]]
module = ["rich", "attr"]
Expand Down
Loading