Inherit from StopAsyncIteration

This commit is contained in:
Dan 2019-02-23 12:09:27 +01:00 committed by GitHub
parent cfcc4195ae
commit bd56c428c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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