mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-16 05:35:43 +08:00
11 lines
191 B
Python
11 lines
191 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
|