civics-cdf-validator 1.57.dev9__tar.gz → 1.58.dev0__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.dev9/civics_cdf_validator.egg-info → civics_cdf_validator-1.58.dev0}/PKG-INFO +1 -1
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0/civics_cdf_validator.egg-info}/PKG-INFO +1 -1
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/rules.py +1 -3
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/version.py +1 -1
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/CONTRIBUTING.md +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/LICENSE-2.0.txt +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/MANIFEST.in +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/README.md +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/__init__.py +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/base.py +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/civics_cdf_validator.egg-info/SOURCES.txt +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/civics_cdf_validator.egg-info/dependency_links.txt +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/civics_cdf_validator.egg-info/entry_points.txt +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/civics_cdf_validator.egg-info/requires.txt +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/civics_cdf_validator.egg-info/top_level.txt +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/gpunit_rules.py +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/loggers.py +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/office_utils.py +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/setup.cfg +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/setup.py +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/stats.py +0 -0
- {civics_cdf_validator-1.57.dev9 → civics_cdf_validator-1.58.dev0}/validator.py +0 -0
|
@@ -442,9 +442,7 @@ class EmptyText(base.BaseRule):
|
|
|
442
442
|
return ["Text"]
|
|
443
443
|
|
|
444
444
|
def check(self, element):
|
|
445
|
-
if
|
|
446
|
-
element.text is None and element.get("language") is not None
|
|
447
|
-
):
|
|
445
|
+
if element.text is None or not element.text.strip():
|
|
448
446
|
raise loggers.ElectionError.from_message("Text is empty", element)
|
|
449
447
|
|
|
450
448
|
|
|
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
|