Skip to content

Commit c35fad2

Browse files
committed
Fix broken imports
1 parent eca4b92 commit c35fad2

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
from .wkwebview import *
1010
from .wkapp import *
1111
except:
12-
pass
12+
from wkwebview import *
13+
from wkapp import *
14+
1315

1416
# mostly convenience includes for bottle
1517
# besides its implementation specific includes for the mako templating integration

wkapp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
log = logging.getLogger(__name__)
4040

4141
try:
42-
from .WKWebView import *
42+
from .wkwebview import *
4343
except:
44-
from WKWebView import *
44+
from wkwebview import *
4545

4646

4747
class WKAppWebView(WKWebView):

0 commit comments

Comments
 (0)