Add annotions

This commit is contained in:
tomkat83 2016-08-08 18:40:35 +02:00
parent caba11c43f
commit 6ea203e9a1

View file

@ -19,6 +19,12 @@ import PlexAPI
class lockMethod:
"""
Decorator for class methods to lock hem completely. Same lock is used for
every single decorator and instance used!
Here only used for Playlist()
"""
lock = Lock()
@classmethod