Skip to content

Commit

Permalink
ZK: Added missing type hint import
Browse files Browse the repository at this point in the history
  • Loading branch information
tcalmant committed May 6, 2020
1 parent 6f25c95 commit 8b87067
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pelix/remote/discovery/zookeeper.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

# ZooKeeper library
from kazoo.client import KazooClient, KazooState, EventType
from kazoo.client import WatchedEvent # pylint:disable=unused-import
from kazoo.exceptions import KazooException, NodeExistsError

# iPOPO decorators
Expand Down Expand Up @@ -180,14 +181,12 @@ def on_first_connection():
"""
Called when the client is connected for the first time
"""
pass

@staticmethod
def on_client_reconnection():
"""
Called when the client is reconnected to the server
"""
pass

def __path(self, path):
"""
Expand Down

0 comments on commit 8b87067

Please sign in to comment.