Skip to content

Commit 4994c2a

Browse files
πŸ“˜ DOCS: Updated
1 parent 5eb7468 commit 4994c2a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# NotifyTelegram
1+
# Notify Default
22

33
::: dotflow.providers.notify_default.NotifyDefault

β€Ždotflow/core/exception.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Exception module"""
22

33
MESSAGE_UNKNOWN_ERROR = "Unknown error, please check logs for more information."
4-
MESSAGE_MISSING_STEP_DECORATOR = "A step function necessarily needs an '@action' decorator to circulate in the workflow. For more implementation details, access the documentation: https://dotflow-io.github.io/dotflow/#3-task-function."
4+
MESSAGE_MISSING_STEP_DECORATOR = "A step function necessarily needs an '@action' decorator to circulate in the workflow. For more implementation details, access the documentation: https://dotflow-io.github.io/dotflow/nav/tutorial/first-steps/#3-task-function."
55
MESSAGE_NOT_CALLABLE_OBJECT = "Problem validating the '{name}' object type; this is not a callable object"
66
MESSAGE_EXECUTION_NOT_EXIST = "The execution mode does not exist. Allowed parameter is 'sequential', 'background' and 'parallel'."
77
MESSAGE_IMPORT_MODULE_ERROR = "Error importing Python module '{module}'."

β€Ždotflow/core/task.pyβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ class Task(TaskInstance):
6868
step (Callable):
6969
A argument that receives an object of the callable type,
7070
which is basically a function. You can see in this
71-
[example](https://dotflow-io.github.io/dotflow/#3-task-function).
71+
[example](https://dotflow-io.github.io/dotflow/nav/tutorial/first-steps/#3-task-function).
7272
7373
callback (Callable):
7474
Any callable object that receives **args** or **kwargs**,
7575
which is basically a function. You can see in this
76-
[example](https://dotflow-io.github.io/dotflow/#2-callback-function).
76+
[example](https://dotflow-io.github.io/dotflow/nav/tutorial/first-steps/#2-callback-function).
7777
7878
initial_context (Any): Any python object.
7979
@@ -293,12 +293,12 @@ def add(
293293
step (Callable):
294294
A argument that receives an object of the callable type,
295295
which is basically a function. You can see in this
296-
[example](https://dotflow-io.github.io/dotflow/#3-task-function).
296+
[example](https://dotflow-io.github.io/dotflow/nav/tutorial/first-steps/#3-task-function).
297297
298298
callback (Callable):
299299
Any callable object that receives **args** or **kwargs**,
300300
which is basically a function. You can see in this
301-
[example](https://dotflow-io.github.io/dotflow/#2-callback-function).
301+
[example](https://dotflow-io.github.io/dotflow/nav/tutorial/first-steps/#2-callback-function).
302302
303303
initial_context (Context):
304304
The argument exists to include initial data in the execution

0 commit comments

Comments
Β (0)