A very small change, but some linters (such as pycharm) rightfully raise a warning when a module has an __all__
attribute and you import something not in __all__
.
I believe these 2 names are meant to be imported so it makes sense to have them in __all__
.
(I like when there is no warning, we're not doing C++ where we expect to ignore 157957 warnings on every build ^^)