Merge branch 'refs/heads/master_gh'

# Conflicts:
#	pyproject.toml
This commit is contained in:
Georg K
2024-04-09 02:37:34 +03:00
20 changed files with 5630 additions and 1878 deletions

View File

@@ -749,7 +749,7 @@ class Message(ABC):
group_current.setdefault(meta.group)
value = self.__raw_get(field_name)
if value != PLACEHOLDER and not (meta.optional and value is None):
if value is not PLACEHOLDER and not (meta.optional and value is None):
# Found a non-sentinel value
all_sentinel = False