embedded bots: Rename state and state_handler to storage.

This commit is contained in:
derAnfaenger
2017-10-20 17:42:57 +02:00
committed by Tim Abbott
parent cd600b8677
commit 34e3eb8c67
2 changed files with 27 additions and 27 deletions

View File

@@ -79,7 +79,7 @@ class EmbeddedBotHandler(object):
self._rate_limit = RateLimit(20, 5)
self.full_name = user_profile.full_name
self.email = user_profile.email
self.state = StateHandler(user_profile)
self.storage = StateHandler(user_profile)
def send_message(self, message):
# type: (Dict[str, Any]) -> None