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

pull/1319/head
DeanLee 5 years ago committed by GitHub
parent c985e997e9
commit b4641b7392
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      common/spinner.py

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

Loading…
Cancel
Save