mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
[cleanup] Misc cleanup
This commit is contained in:
parent
4e3b637d5b
commit
b5ae35ee6d
25 changed files with 142 additions and 136 deletions
|
@ -1,3 +1,4 @@
|
|||
import functools
|
||||
from threading import Lock
|
||||
from .utils import supports_terminal_sequences, TERMINAL_SEQUENCES
|
||||
|
||||
|
@ -49,6 +50,7 @@ class MultilinePrinter(MultilinePrinterBase):
|
|||
self._HAVE_FULLCAP = supports_terminal_sequences(self.stream)
|
||||
|
||||
def lock(func):
|
||||
@functools.wraps(func)
|
||||
def wrapper(self, *args, **kwargs):
|
||||
with self._movelock:
|
||||
return func(self, *args, **kwargs)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue