Skip to content

Commit 355813e

Browse files
committed
Fix some typing comments
1 parent 3d9ce7c commit 355813e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

images/pyspark-notebook/ipython_kernel_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99

1010
# Attempt to capture and forward low-level output, e.g. produced by Extension libraries.
1111
# Default: True
12-
# type:ignore
12+
# type: ignore
1313
c.IPKernelApp.capture_fd_output = False # noqa: F821

tagging/get_taggers_and_manifests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def get_taggers_and_manifests(
1010
short_image_name: str | None,
1111
) -> tuple[list[TaggerInterface], list[ManifestInterface]]:
1212
if short_image_name is None:
13-
return [[], []] # type: ignore
13+
return [], []
1414

1515
image_description = ALL_IMAGES[short_image_name]
1616
parent_taggers, parent_manifests = get_taggers_and_manifests(

0 commit comments

Comments
 (0)