Skip to content

Commit 3651949

Browse files
committed
fix
1 parent 28c8a07 commit 3651949

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.internal/pre_commit_tools/metadata_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def verify_type(self, data: Any) -> bool:
6464
return type(data) is list and all(type(i) is str for i in data)
6565

6666
def verify_value(self, data: list[str]) -> bool:
67-
if allowed_values is None:
67+
if self.allowed_values is None:
6868
return True
6969
else:
7070
return all(value in self.allowed_values for value in data)

0 commit comments

Comments
 (0)