2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-09-01 14:55:12 +00:00

Inherit from StopAsyncIteration

This commit is contained in:
Dan
2019-02-23 12:09:27 +01:00
committed by GitHub
parent cfcc4195ae
commit bd56c428c6

View File

@@ -17,11 +17,11 @@
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
class StopPropagation(StopIteration):
class StopPropagation(StopAsyncIteration):
pass
class ContinuePropagation(StopIteration):
class ContinuePropagation(StopAsyncIteration):
pass