Skip to content

Commit c48cf38

Browse files
Merge pull request #82 from ddemidov/master
Fix import in QtAds.__init__.py
2 parents ec48140 + 46fb18f commit c48cf38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PyQtAds/QtAds/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from .ads import ads
2-
from ._version import *
2+
from .._version import *
33

44
import inspect
55

66
for name, member in inspect.getmembers(ads):
77
if not name.startswith('_'):
88
globals()[name] = member
99

10-
del ads
10+
del ads

0 commit comments

Comments
 (0)