Skip to content

Commit

Permalink
[EventHubs] Make __init__.py compatible with pkgutil-style namespace (#…
Browse files Browse the repository at this point in the history
…13210)

* Make __init__.py compatible with pkgutil-style namespace

Fixes #13187

* fix pylint and add license info

Co-authored-by: Yunhao Ling <adam_ling@outlook.com>
  • Loading branch information
pjachowi and yunhaoling authored Sep 14, 2020
1 parent a5a03d0 commit fe4754b
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
__path__ = __import__("pkgutil").extend_path(__path__, __name__) # type: ignore

0 comments on commit fe4754b

Please sign in to comment.