fix codacy

This commit is contained in:
Casper da Costa-Luis 2020-06-03 11:34:30 +01:00
parent 1e0bb74db6
commit 0cd9448b2b
No known key found for this signature in database
GPG Key ID: 986B408043AE090D
1 changed files with 6 additions and 3 deletions

View File

@ -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