Closed boldar99 closed 5 months ago
Are you sure you got all the cases where this has to be updated? Did you do some kind of automated search?
I used PyCharm's automated search and replace to deal with EdgeType.Type
and VertexType.Type
.
Now I double-checked it with grep
as well which had no matches, so it seems good.
VertexType and EdgeType were implemented as data classes with hard-coded types. A better solution for implementing these classes is using Enums.
Changes:
VertexType.Type
toVertexType
. Similarly forEdgeType
.