jxing 5 лет назад
Родитель
Сommit
cec1d33662
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/grid/check_grid.py

+ 1 - 1
src/grid/check_grid.py

@@ -64,7 +64,7 @@ def has_conflict(base, compare):
             type1 = location.get('Type')
             location2 = compare.get(name)
             if isinstance(location2, str):
-                location2 = dict(location2)
+                location2 = json.loads(location2)
             type2 = location2.get('Type')
             if type1 in type2:
                 if 'Line' in type1: