Verified Commit 3de644a2 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Make items in client/__init__.py reexportable

parent 09ac9149
Loading
Loading
Loading
Loading
+4 −11
Original line number Diff line number Diff line
#  Copyright 2019-2021  Dom Sekotill <dom.sekotill@kodo.org.uk>
#  Copyright 2019-2021, 2024  Dom Sekotill <dom.sekotill@kodo.org.uk>
#
#  Licensed under the Apache License, Version 2.0 (the "License");
#  you may not use this file except in compliance with the License.
@@ -16,14 +16,7 @@
WPA-Supplicant client classes
"""

from ._global import GlobalClient
from .base import BaseClient
from ._global import GlobalClient as GlobalClient
from .base import BaseClient as BaseClient
from .consts import *
from .consts import __all__ as _consts_names
from .interfaces import InterfaceClient

__all__ = _consts_names + (
	'BaseClient',
	'GlobalClient',
	'InterfaceClient',
)
from .interfaces import InterfaceClient as InterfaceClient