Fixed styles merging

Signed-off-by: Sergiy Kozyr <s.trump@gmail.com>
This commit is contained in:
Sergiy Kozyr 2024-07-29 17:58:23 +03:00 committed by Viktor Havaka
parent ecb7665ea5
commit 66f04c6090

View file

@ -74,7 +74,7 @@ def create_diff(zooms1, zooms2):
print("{}: missing completely; {}".format(typ, zooms_string(zooms2[typ][0].scale, zooms2[typ][1].scale)))
cont = drules_struct_pb2.ClassifElementProto()
cont.name = typ
for z in range(zooms2[typ][0].scale, zooms2[typ][1].scale):
for z in range(zooms2[typ][0].scale, zooms2[typ][1].scale+1):
fix = copy.deepcopy(zooms2[typ][0])
fix.scale = z
cont.element.extend([fix])