Skip to content
Snippets Groups Projects
Commit 3b09743c authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[prototypes] Cleanup using black

parent c2f47ffd
No related branches found
No related tags found
1 merge request!62Code cleanup
class Algorithm:
def process(self, inputs, data_loaders, outputs):
# TODO: Implement this algorithm
......
class Plotter:
def process(self, input):
# TODO: Implement this plotter
#return image as a string
# return image as a string
pass
class View:
def setup(
self,
root_folder,
outputs,
parameters,
force_start_index=None,
force_end_index=None,
):
"""Initializes the database"""
def setup(self, root_folder, outputs, parameters, force_start_index=None, force_end_index=None):
'''Initializes the database'''
return True
return True
def done(self):
"""Should return ``True``, when data is finished"""
return True
def done(self):
'''Should return ``True``, when data is finished'''
def next(self):
"""Loads the next data block on ``outputs``"""
return True
def next(self):
'''Loads the next data block on ``outputs``'''
return True
return True
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment