Skip to content

Commit

Permalink
Merge pull request #36 from JoshYuJump/main
Browse files Browse the repository at this point in the history
Fixed import issues
  • Loading branch information
JoshYuJump authored May 12, 2022
2 parents 8a2b5df + 5f91dcb commit 673490a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.1.5'
__version__ = '2.1.6'
4 changes: 2 additions & 2 deletions cli/templates/utils.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ from ._config import GRPC_ADDRESS
# `GRPC_ADDRESS` is Generic gRPC channel target
# `GRPC_ADDRESS_EXTENDS` is gRPC channel target specified by service abbreviation
try:
from .._config import GRPC_ADDRESS_EXTENDS
from ._config import GRPC_ADDRESS_EXTENDS
except ImportError:
GRPC_ADDRESS_EXTENDS = {}

# gRPC connect channel options
try:
from .._config import GRPC_CHANNEL_OPTIONS as channel_options
from ._config import GRPC_CHANNEL_OPTIONS as channel_options
except ImportError:
channel_options = None

Expand Down

0 comments on commit 673490a

Please sign in to comment.