Draft: disconsider unknown edge types in geo utils

This commit is contained in:
Yorik van Havre
2021-07-07 15:43:55 +02:00
parent 8d445f38e4
commit 8d5544ee3c

View File

@@ -252,7 +252,7 @@ def geomType(edge):
return "Ellipse"
else:
return "Unknown"
except TypeError:
except: # catch all errors, no only TypeError
return "Unknown"