-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IO-1454][IO-1455][IO-1456][IO-1458] Streamlining of Team/Dataset del…
…etion and creation methods (#685) * dogfooding changes for dataset/team objects * WIP ruff fixes * WIP ruff fixes * black fixes * wip ruff * typecheck change * wip ruff * comment * comment * ruff * ruff * black defaults * black defaults * vscode settings update * ruff addition to dev
- Loading branch information
1 parent
6f755d5
commit e958307
Showing
64 changed files
with
918 additions
and
484 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from darwin.future.core.datasets.create_dataset import * | ||
from darwin.future.core.datasets.get_dataset import * | ||
from darwin.future.core.datasets.list_datasets import * | ||
from darwin.future.core.datasets.remove_dataset import * | ||
from darwin.future.core.datasets.create_dataset import create_dataset | ||
from darwin.future.core.datasets.get_dataset import get_dataset | ||
from darwin.future.core.datasets.list_datasets import list_datasets | ||
from darwin.future.core.datasets.remove_dataset import remove_dataset |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from darwin.future.core.items.get import * | ||
from darwin.future.core.items.move_items import * | ||
from darwin.future.core.items.get import get_item_ids, get_item_ids_stage | ||
from darwin.future.core.items.move_items import move_items_to_stage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from .common import * | ||
from .common import JSONType, QueryString, TeamSlug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from darwin.future.core.workflows.get_workflow import * | ||
from darwin.future.core.workflows.get_workflows import * | ||
from darwin.future.core.workflows.list_workflows import * | ||
from darwin.future.core.workflows.get_workflow import get_workflow | ||
from darwin.future.core.workflows.get_workflows import get_workflows | ||
from darwin.future.core.workflows.list_workflows import list_workflows |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.