Skip to content

Commit 7556b8f

Browse files
authored
mypy ignore comments added (#1814)
1 parent 851f9f5 commit 7556b8f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pytest_plugins/filler/filler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ def __init__(self, *args, **kwargs):
906906
"Make sure phase 1 (--generate-pre-alloc-groups) was run "
907907
"before phase 2."
908908
)
909-
group: PreAllocGroup = request.config.pre_alloc_groups[pre_alloc_hash]
909+
group: PreAllocGroup = request.config.pre_alloc_groups[pre_alloc_hash] # type: ignore[annotation-unchecked]
910910
self.pre = group.pre
911911

912912
fixture = self.generate(

src/pytest_plugins/filler/gen_test_doc/gen_test_doc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,4 +596,4 @@ def sort_by_fork_deployment_and_path(x: PageProps) -> Tuple[Any, ...]:
596596
def write_pages(self) -> None:
597597
"""Write all pages to the target directory."""
598598
for page in self.page_props.values():
599-
page.write_page(mkdocs_gen_files, self.jinja2_env)
599+
page.write_page(mkdocs_gen_files, self.jinja2_env) # type: ignore[arg-type]

0 commit comments

Comments
 (0)