7 lines
143 B
Python
7 lines
143 B
Python
from image_prediction.formatter.formatter import Formatter
|
|
|
|
|
|
class IdentityFormatter(Formatter):
|
|
def format(self, obj):
|
|
return obj
|