singnet / das-atom-db

Persistence layer
MIT License
2 stars 0 forks source link

[Atom DB PY] Stop converting `set` into `list` where is possible #223

Closed angeloprobst closed 3 weeks ago

angeloprobst commented 3 weeks ago

Atom DB stores some data in set containers but some get_... functions are returning list from the same data, which requires a conversion (instantiation + copy). Goal here is to make those functions to return the set when possible and avoid unnecessary conversions.