Skip to content
This repository has been archived by the owner on Nov 3, 2022. It is now read-only.

Commit

Permalink
Fix mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
ymyzk committed Dec 3, 2017
1 parent c4e4143 commit b778b9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kawasemi/kawasemi.py
Expand Up @@ -54,7 +54,7 @@ def send(self, message, channel_name=None, fail_silently=False,
raise ImproperlyConfigured(
"Specify the backend class in the channel configuration")

backend = self._load_backend(config["_backend"])
backend = self._load_backend(config["_backend"]) # type: Any
config = deepcopy(config)
del config["_backend"]
channel = backend(**config)
Expand Down

0 comments on commit b778b9a

Please sign in to comment.