Skip to content

Commit

Permalink
shorter comments
Browse files Browse the repository at this point in the history
  • Loading branch information
goFrendiAsgard committed Nov 23, 2023
1 parent 82e5ccb commit e450ca2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ DEFAULT_URL = 'https://raw.githubusercontent.com/state-alchemists/datasets/main/
install_pandas = CmdTask(
name='install-pandas',
cmd='pip install pandas',
# If this task failed (probably because of connection problem),
# we want to retry this again 4 times at most
# If this task failed, we want to retry this again 4 times at most
retry=4
)

Expand All @@ -67,8 +66,7 @@ download_dataset = CmdTask(
],
# You can access url input value by using Jinja template: `{{ input.url }}`
cmd='wget -O dataset.csv {{input.url}}',
# If this task failed (probably because of connection problem),
# we want to retry this again 4 times at most
# If this task failed, we want to retry this again 4 times at most
retry=4
)

Expand Down

0 comments on commit e450ca2

Please sign in to comment.