Skip to content

Commit

Permalink
Merge pull request #31 from allestuetsmerweh/update_py3_pep8_api
Browse files Browse the repository at this point in the history
Improvements
  • Loading branch information
allestuetsmerweh authored May 8, 2017
2 parents b3f23bf + 3f70e05 commit c028b82
Show file tree
Hide file tree
Showing 20 changed files with 1,176 additions and 880 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ garden.cefpython
2garden.cefpython
.idea
*debug.log
cefbrowser/lib/cefpython/*
cef_data
cef_caches
cef_cookies
Expand Down
3 changes: 2 additions & 1 deletion __init__.py
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
12 changes: 6 additions & 6 deletions cefbrowser/__init__.py
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",
)
Loading

0 comments on commit c028b82

Please sign in to comment.