fix AttributeError: 'FakeSpinner' object has no attribute 'close' (#1317)

albatross
DeanLee 2020-04-06 01:54:01 +08:00 committed by GitHub
parent c985e997e9
commit b4641b7392
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -50,6 +50,9 @@ class FakeSpinner():
def update(self, _):
pass
def close(self):
pass
def __exit__(self, type, value, traceback):
pass