mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-16 05:35:43 +08:00
10 lines
189 B
Python
10 lines
189 B
Python
|
from .ads import ads
|
||
|
from ._version import *
|
||
|
|
||
|
import inspect
|
||
|
|
||
|
for name, member in inspect.getmembers(ads):
|
||
|
if not name.startswith('_'):
|
||
|
globals()[name] = member
|
||
|
|
||
|
del ads
|