We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eca4b92 commit c35fad2Copy full SHA for c35fad2
2 files changed
__init__.py
@@ -9,7 +9,9 @@
9
from .wkwebview import *
10
from .wkapp import *
11
except:
12
- pass
+ from wkwebview import *
13
+ from wkapp import *
14
+
15
16
# mostly convenience includes for bottle
17
# besides its implementation specific includes for the mako templating integration
wkapp.py
@@ -39,9 +39,9 @@
39
log = logging.getLogger(__name__)
40
41
try:
42
- from .WKWebView import *
+ from .wkwebview import *
43
44
- from WKWebView import *
45
46
47
class WKAppWebView(WKWebView):
0 commit comments