1
0
Fork 0
forked from github/pelican

preserve connection order in blinker

This commit is contained in:
Deniz Turgut 2023-11-03 01:05:12 +03:00
commit 8a8b952ecb
No known key found for this signature in database
GPG key ID: 87B7168D7AB3ED2F
4 changed files with 34 additions and 6 deletions

View file

@ -1,4 +1,8 @@
from blinker import signal
from blinker import signal, Signal
from ordered_set import OrderedSet
# Signals will call functions in the order of connection, i.e. plugin order
Signal.set_class = OrderedSet
# Run-level signals: