Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvements #31

Merged
merged 7 commits into from
May 8, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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