mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-27 16:45:19 +00:00
Remove unneeded threading.Lock
This commit is contained in:
parent
87ae79e0e2
commit
4c32a15cfd
@ -16,19 +16,15 @@
|
|||||||
# You should have received a copy of the GNU Lesser General Public License
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
from threading import Lock
|
|
||||||
|
|
||||||
|
|
||||||
class SeqNo:
|
class SeqNo:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.content_related_messages_sent = 0
|
self.content_related_messages_sent = 0
|
||||||
self.lock = Lock()
|
|
||||||
|
|
||||||
def __call__(self, is_content_related: bool) -> int:
|
def __call__(self, is_content_related: bool) -> int:
|
||||||
with self.lock:
|
seq_no = (self.content_related_messages_sent * 2) + (1 if is_content_related else 0)
|
||||||
seq_no = (self.content_related_messages_sent * 2) + (1 if is_content_related else 0)
|
|
||||||
|
|
||||||
if is_content_related:
|
if is_content_related:
|
||||||
self.content_related_messages_sent += 1
|
self.content_related_messages_sent += 1
|
||||||
|
|
||||||
return seq_no
|
return seq_no
|
||||||
|
Loading…
Reference in New Issue
Block a user