Merge main.

This commit is contained in:
Sergey Vartanov 2021-09-24 06:38:06 +03:00
commit a7b3c707cf
12 changed files with 378 additions and 90 deletions

View file

@ -499,7 +499,7 @@ def check_level_overground(tags: Dict[str, Any]) -> bool:
try:
levels: map = map(float, tags["level"].replace(",", ".").split(";"))
for level in levels:
if level <= 0:
if level < 0:
return False
except ValueError:
pass