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

Fix import errors and warnings detected by pylint #6

Merged
merged 4 commits into from
Jul 7, 2015
Merged
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
Prev Previous commit
Fix pylint relative-import warnings
  • Loading branch information
moreati committed Jul 7, 2015
commit bd7000d18fe938617e808f6e8ffd0de8aec4381e
7 changes: 4 additions & 3 deletions smartcard/wx/SimpleSCardAppFrame.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@

import os.path
import wx

import smartcard.wx
import APDUTracerPanel
import CardAndReaderTreePanel
import ReaderToolbar
from smartcard.wx import APDUTracerPanel
from smartcard.wx import CardAndReaderTreePanel
from smartcard.wx import ReaderToolbar

import smartcard
from smartcard.wx.SimpleSCardAppEventObserver import \
Expand Down