Commit 7bdd4f6e authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Add imports from submodules back to wpa_supplicant.client

parent 1a4659aa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ repos:
  rev: v0.2.7
  hooks:
  - id: unimport
    args: [--remove]
    args: [--remove, --exclude=__init__.py]

- repo: https://github.com/timothycrosley/isort
  rev: 4.3.21-2
+2 −2
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ exclude =
per-file-ignores =
  setup.py: D100, E702
  tests/*.py: D100, C801
  **/__init__.py: D104
  **/__init__.py: D104, F401, F403
  **/__main__.py: D100, E702

ignore =
+7 −0
Original line number Diff line number Diff line
@@ -15,3 +15,10 @@
"""
WPA-Supplicant client classes
"""

from .base import BaseClient
from .consts import *
from .interfaces import InterfaceClient
from .master import MasterClient

__all__ = list(globals().keys())