forked from kivy-garden/garden.cefpython
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from allestuetsmerweh/update_py3_pep8_api
Improvements
- Loading branch information
Showing
20 changed files
with
1,176 additions
and
880 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: UTF-8 -*- | ||
|
||
from .cefbrowser import * | ||
|
||
from cefbrowser import * # noqa: F401,F403 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: UTF-8 -*- | ||
|
||
__all__ = ('cef_test_url', 'CEFBrowser', ) | ||
|
||
import os | ||
from .version import __version__ # noqa: F401 | ||
from .cefbrowser import CEFBrowser # noqa: F401 | ||
|
||
from .version import __version__ | ||
from .cefbrowser import CEFBrowser | ||
|
||
cef_test_url = "file://"+os.path.join(os.path.dirname(os.path.realpath(__file__)), "test.html") | ||
cef_test_url = "file://" + os.path.join( | ||
os.path.dirname(os.path.realpath(__file__)), | ||
"test.html", | ||
) |
Oops, something went wrong.