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