X-Git-Url: https://scripts.mit.edu/gitweb/wizard.git/blobdiff_plain/fe1beb7af80700fd127f96774e81dff04eafc2bf..90871582b5a3ba8c99b25b1f7dc140bbe1156e4d:/wizard/sset.py diff --git a/wizard/sset.py b/wizard/sset.py index c820ee7..a5c37d4 100644 --- a/wizard/sset.py +++ b/wizard/sset.py @@ -5,6 +5,8 @@ class ISerializedSet(object): raise NotImplementedError class SerializedSet(ISerializedSet): + """This set also records itself to a file, so that it + is persisted over multiple sessions.""" def __init__(self, file): self.set = set() if os.path.isfile(file):