Skip to content

Commit

Permalink
BUG: Add __all__ to itk.support.init_helpers
Browse files Browse the repository at this point in the history
Avoid adding the imports into the `itk` package namespace.
  • Loading branch information
thewtex committed Mar 24, 2021
1 parent 346e127 commit 14992c6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Wrapping/Generators/Python/itk/support/init_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
from enum import IntEnum, unique
from typing import Union

__all__ = [
"auto_not_in_place",
"AutoProgressTypes",
"auto_progress",
"terminal_progress_callback",
"terminal_import_callback",
"simple_import_callback",
"simple_progress_callback",
"force_load",
]

# The following line defines an ascii string used for dynamically refreshing
# the import and progress callbacks on the same terminal line.
# See http://www.termsys.demon.co.uk/vtansi.htm
Expand Down

0 comments on commit 14992c6

Please sign in to comment.