fix(lib): fix import * (typo in name)

This commit is contained in:
Jérome Eertmans
2023-08-07 10:11:16 +02:00
parent 146a2f7839
commit f6f2e4090f
3 changed files with 18 additions and 15 deletions

View File

@ -43,6 +43,6 @@ new_module.__dict__.update(
"__path__": __path__,
"__doc__": __doc__,
"__version__": __version__,
"__all__": ("__version__", "Slides", "ThreeDSlide"),
"__all__": ("__version__", "Slide", "ThreeDSlide"),
}
)