remove print

This commit is contained in:
onyx-and-iris 2022-04-29 03:07:06 +01:00
parent 3aebd90920
commit f8b964bc35

View File

@ -15,7 +15,6 @@ def cache_bool(func, param):
self, *rem = args
cmd = f"{self.identifier}[{self.index}].{param}"
if cmd in self._remote.cache:
print(self._remote.cache[cmd] == 1)
return self._remote.cache.pop(cmd) == 1
return func(*args, **kwargs)