Skip to content

Commit c21e913

Browse files
authored
Made contextlib private in ScrollableContainers namespace (#25)
Allows wildcard imports of everything available in the package.
1 parent 87b2e43 commit c21e913

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import contextlib
1+
import contextlib as _contextlib
22

3-
with contextlib.suppress(ImportError):
3+
with _contextlib.suppress(ImportError):
44
from ScrollableContainers._qt5 import ScrollableAreaQt5
5-
with contextlib.suppress(ImportError):
5+
with _contextlib.suppress(ImportError):
66
from ScrollableContainers._qt6 import ScrollableAreaQt6
7-
with contextlib.suppress(ImportError):
7+
with _contextlib.suppress(ImportError):
88
from ScrollableContainers._tk import ScrollableFrameTk
9-
with contextlib.suppress(ImportError):
9+
with _contextlib.suppress(ImportError):
1010
from ScrollableContainers._wx import ScrollablePanelWx

0 commit comments

Comments
 (0)