civics-cdf-validator 1.61.dev1__tar.gz → 1.61.dev2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {civics_cdf_validator-1.61.dev1/civics_cdf_validator.egg-info → civics_cdf_validator-1.61.dev2}/PKG-INFO +1 -1
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2/civics_cdf_validator.egg-info}/PKG-INFO +1 -1
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/rules.py +2 -6
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/version.py +1 -1
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/CONTRIBUTING.md +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/LICENSE-2.0.txt +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/MANIFEST.in +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/README.md +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/__init__.py +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/base.py +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/civics_cdf_validator.egg-info/SOURCES.txt +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/civics_cdf_validator.egg-info/dependency_links.txt +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/civics_cdf_validator.egg-info/entry_points.txt +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/civics_cdf_validator.egg-info/requires.txt +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/civics_cdf_validator.egg-info/top_level.txt +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/gpunit_rules.py +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/loggers.py +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/office_utils.py +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/setup.cfg +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/setup.py +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/stats.py +0 -0
- {civics_cdf_validator-1.61.dev1 → civics_cdf_validator-1.61.dev2}/validator.py +0 -0
|
@@ -4936,11 +4936,7 @@ class DeprecatedPartyLeadershipSchema(base.BaseRule):
|
|
|
4936
4936
|
|
|
4937
4937
|
|
|
4938
4938
|
class GovernmentBodyExternalId(base.BaseRule):
|
|
4939
|
-
"""
|
|
4940
|
-
|
|
4941
|
-
This rule will be upgraded to an error once all feeds are migrated to the new
|
|
4942
|
-
schema.
|
|
4943
|
-
"""
|
|
4939
|
+
"""Errors if the government body is set using an external identifier instead of the GovernmentBody element."""
|
|
4944
4940
|
|
|
4945
4941
|
def elements(self):
|
|
4946
4942
|
return ["ExternalIdentifiers"]
|
|
@@ -4949,7 +4945,7 @@ class GovernmentBodyExternalId(base.BaseRule):
|
|
|
4949
4945
|
if get_external_id_values(
|
|
4950
4946
|
element, "government-body"
|
|
4951
4947
|
) or get_external_id_values(element, "governmental-body"):
|
|
4952
|
-
raise loggers.
|
|
4948
|
+
raise loggers.ElectionError.from_message(
|
|
4953
4949
|
"Specifying government body via external identifiers is deprecated."
|
|
4954
4950
|
" Please use the top level GovernmentBody element instead."
|
|
4955
4951
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|