civics-cdf-validator 1.57.dev7__tar.gz → 1.57.dev8__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.57.dev7/civics_cdf_validator.egg-info → civics_cdf_validator-1.57.dev8}/PKG-INFO +1 -1
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8/civics_cdf_validator.egg-info}/PKG-INFO +1 -1
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/rules.py +3 -10
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/version.py +1 -1
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/CONTRIBUTING.md +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/LICENSE-2.0.txt +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/MANIFEST.in +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/README.md +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/__init__.py +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/base.py +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/civics_cdf_validator.egg-info/SOURCES.txt +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/civics_cdf_validator.egg-info/dependency_links.txt +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/civics_cdf_validator.egg-info/entry_points.txt +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/civics_cdf_validator.egg-info/requires.txt +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/civics_cdf_validator.egg-info/top_level.txt +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/gpunit_rules.py +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/loggers.py +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/office_utils.py +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/setup.cfg +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/setup.py +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/stats.py +0 -0
- {civics_cdf_validator-1.57.dev7 → civics_cdf_validator-1.57.dev8}/validator.py +0 -0
|
@@ -467,16 +467,9 @@ class EmptyString(base.BaseRule):
|
|
|
467
467
|
# pylint: disable=g-explicit-length-test
|
|
468
468
|
def check(self, element):
|
|
469
469
|
if element.text is None or not element.text.strip() and not len(element):
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
raise loggers.ElectionWarning.from_message(
|
|
474
|
-
"String field is empty", [element]
|
|
475
|
-
)
|
|
476
|
-
else:
|
|
477
|
-
raise loggers.ElectionError.from_message(
|
|
478
|
-
"String field is empty", [element]
|
|
479
|
-
)
|
|
470
|
+
raise loggers.ElectionError.from_message(
|
|
471
|
+
"String field is empty", [element]
|
|
472
|
+
)
|
|
480
473
|
|
|
481
474
|
|
|
482
475
|
class DuplicateID(base.TreeRule):
|
|
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
|