Make SyncToken.token initially None to avoid uninitialized error
This commit is contained in:
parent
6231f0ed17
commit
668a892e8c
1 changed files with 1 additions and 0 deletions
|
@ -10,6 +10,7 @@ class SyncToken(object):
|
|||
store (Storage): An object to access the storage layer
|
||||
"""
|
||||
self.store = store
|
||||
self.token = None
|
||||
|
||||
# Attempt to load a token from the provided storage layer
|
||||
self._load()
|
||||
|
|
Loading…
Reference in a new issue