Skip to content

Commit

Permalink
Introduce params syncing script now that it's not a side-effect in ma…
Browse files Browse the repository at this point in the history
…in params module
  • Loading branch information
blakeNaccarato committed Aug 2, 2024
1 parent 4836eca commit b6221a5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"label": "dvc: sync params",
"type": "process",
"command": "pwsh",
"args": ["-Command", "python -m boilercore.models.params"],
"args": ["-Command", "python -m boilercore.models.sync_params"],
"icon": { "id": "graph" },
"problemMatcher": []
},
Expand Down
6 changes: 6 additions & 0 deletions src/boilercore/models/sync_params.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"""Sync params."""

from boilercore.models.params import Params

if __name__ == "__main__":
Params()

0 comments on commit b6221a5

Please sign in to comment.