check against lowered value

This commit is contained in:
Jakub Trllo 2024-03-27 14:21:49 +01:00 committed by GitHub
parent 37e7b31feb
commit 4ce342d356
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -186,7 +186,7 @@ class ShotMetadataSolver:
# in case first parent is project then start parents from start
if (
_index == 0
and parent_token_type == "Project"
and parent_token_type.lower() == "project"
):
project_parent = parents[0]
parents = [project_parent]