summaryrefslogtreecommitdiffstats
path: root/deluge/decorators.py
diff options
context:
space:
mode:
Diffstat (limited to 'deluge/decorators.py')
-rw-r--r--deluge/decorators.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/deluge/decorators.py b/deluge/decorators.py
index 2f9fcd7d3..92e3ecf59 100644
--- a/deluge/decorators.py
+++ b/deluge/decorators.py
@@ -166,7 +166,8 @@ def deprecated(func):
class CoroutineDeferred(defer.Deferred):
"""Wraps a coroutine in a Deferred.
- It will dynamically pass through the underlying coroutine without wrapping where apporpriate."""
+ It will dynamically pass through the underlying coroutine without wrapping where apporpriate.
+ """
def __init__(self, coro: Coroutine):
# Delay this import to make sure a reactor was installed first