Skip to content

Commit 541f695

Browse files
author
kgued
committed
add TODO reminders to write detailed doc
1 parent 707701a commit 541f695

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

dataikuapi/dss/recipe.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1100,6 +1100,7 @@ def with_function_name(self, module_name, function_name, function_args=None, cus
11001100
"""
11011101
Defines this recipe as being a functional recipe calling a function name from a module name
11021102
"""
1103+
#TODO add detailed documentation
11031104
script_tmpl = PythonRecipeCreator.DEFAULT_RECIPE_CODE_TMPL if custom_template is None else custom_template
11041105

11051106
if function_args is None:
@@ -1111,6 +1112,7 @@ def with_function_name(self, module_name, function_name, function_args=None, cus
11111112
return self
11121113

11131114
def with_function(self, fn, function_args=None, custom_template=None):
1115+
#TODO: add detailed documentation, especially about the constrains on signature of said fn, e.g: input df lists
11141116
import inspect
11151117
#TODO: add in documentation that relative imports wont work
11161118
module_name = inspect.getmodule(fn).__name__

0 commit comments

Comments
 (0)