]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/utils.py
[extractor] Use classmethod/property where possible
[yt-dlp.git] / yt_dlp / utils.py
index ba73c2191d03ba73529b2c57b88c187814d9e9ca..82eb30af6dc5f7b84dc254ca36c2276e442a4fe6 100644 (file)
@@ -5321,6 +5321,7 @@ def merge_headers(*dicts):
 
 class classproperty:
     def __init__(self, f):
+        functools.update_wrapper(self, f)
         self.f = f
 
     def __get__(self, _, cls):