mirror of https://github.com/tqdm/tqdm.git
fix codacy
This commit is contained in:
parent
1e0bb74db6
commit
0cd9448b2b
|
@ -92,11 +92,14 @@ class TqdmCallback(keras.callbacks.Callback):
|
|||
self.batch_bar.close()
|
||||
self.epoch_bar.close()
|
||||
|
||||
def _implements_train_batch_hooks(self):
|
||||
@staticmethod
|
||||
def _implements_train_batch_hooks():
|
||||
return True
|
||||
|
||||
def _implements_test_batch_hooks(self):
|
||||
@staticmethod
|
||||
def _implements_test_batch_hooks():
|
||||
return True
|
||||
|
||||
def _implements_predict_batch_hooks(self):
|
||||
@staticmethod
|
||||
def _implements_predict_batch_hooks():
|
||||
return True
|
||||
|
|
Loading…
Reference in New Issue