Skip to content

Commit 82c258a

Browse files
committed
fix: Fix type typo that was introduced previously
This typo was introducted in a4f43f8. It just so happens that currently both classes use the same word for REMOVE/remove which is why this worked, but we need to fix the typo.
1 parent ad0848d commit 82c258a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/shared/listeners/cache_suggestions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def apply_package_overlays(
130130
to_skip = {
131131
edit.package_attribute
132132
for edit in edits
133-
if edit.edit_type == MaintainerOverlay.Type.REMOVE
133+
if edit.edit_type == PackageOverlay.Type.REMOVE
134134
}
135135

136136
return {attr: data for attr, data in packages.items() if attr not in to_skip}

0 commit comments

Comments
 (0)