-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
--------- Co-authored-by: Dallas Strandell <41165864+argenate@users.noreply.github.com>
- Loading branch information
Showing
14 changed files
with
724 additions
and
132 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
from .data_container import * | ||
from .flojoy_python import * | ||
from .job_result_builder import * | ||
from .flojoy_instruction import * | ||
from .plotly_utils import * | ||
from .module_scraper import * | ||
from .job_result_utils import * | ||
from .data_container import * | ||
from .utils import * | ||
from .parameter_types import * | ||
from .small_memory import * | ||
from .flojoy_node_venv import * | ||
from .job_service import * | ||
from .node_init import * | ||
from .config import * | ||
from .node_preflight import * | ||
from .flojoy_cloud import * | ||
from .instruments import * | ||
from .models import * | ||
from .connection_manager import * | ||
from .data_container import * # noqa: F403 | ||
from .flojoy_python import * # noqa: F403 | ||
from .job_result_builder import * # noqa: F403 | ||
from .flojoy_instruction import * # noqa: F403 | ||
from .plotly_utils import * # noqa: F403 | ||
from .module_scraper import * # noqa: F403 | ||
from .job_result_utils import * # noqa: F403 | ||
from .data_container import * # noqa: F403 | ||
from .utils import * # noqa: F403 | ||
from .parameter_types import * # noqa: F403 | ||
from .small_memory import * # noqa: F403 | ||
from .flojoy_node_venv import * # noqa: F403 | ||
from .job_service import * # noqa: F403 | ||
from .node_init import * # noqa: F403 | ||
from .config import * # noqa: F403 | ||
from .node_preflight import * # noqa: F403 | ||
from .flojoy_cloud import * # noqa: F403 | ||
from .instruments import * # noqa: F403 | ||
from .models import * # noqa: F403 | ||
from .connection_manager import * # noqa: F403 |
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,29 +1,28 @@ | ||
from typing import Optional, Any, TypedDict | ||
from .data_container import * | ||
from .flojoy_python import * | ||
from .job_result_builder import * | ||
from .flojoy_instruction import * | ||
from .plotly_utils import * | ||
from .module_scraper import * | ||
from .job_result_utils import * | ||
from .utils import * | ||
from .parameter_types import * | ||
from .small_memory import * | ||
from .flojoy_node_venv import * | ||
from .job_service import * | ||
from .node_init import * | ||
from .node_preflight import * | ||
from .data_container import * | ||
from .config import * | ||
from .flojoy_cloud import * | ||
from .models import * | ||
from .data_container import * # noqa: F403 | ||
from .flojoy_python import * # noqa: F403 | ||
from .job_result_builder import * # noqa: F403 | ||
from .flojoy_instruction import * # noqa: F403 | ||
from .plotly_utils import * # noqa: F403 | ||
from .module_scraper import * # noqa: F403 | ||
from .job_result_utils import * # noqa: F403 | ||
from .utils import * # noqa: F403 | ||
from .parameter_types import * # noqa: F403 | ||
from .small_memory import * # noqa: F403 | ||
from .flojoy_node_venv import * # noqa: F403 | ||
from .job_service import * # noqa: F403 | ||
from .node_init import * # noqa: F403 | ||
from .node_preflight import * # noqa: F403 | ||
from .config import * # noqa: F403 | ||
from .flojoy_cloud import * # noqa: F403 | ||
from .models import * # noqa: F403 | ||
|
||
def flojoy( | ||
original_function: Callable[..., DataContainer | dict[str, Any] | TypedDict | None] | ||
original_function: Callable[..., DataContainer | dict[str, Any] | TypedDict | None] # noqa: F405 | ||
| None = None, | ||
*, | ||
node_type: Optional[str] = None, | ||
deps: Optional[list[str]] = None, | ||
inject_node_metadata: bool = False, | ||
inject_connection: bool = False, | ||
) -> Callable[..., DataContainer | dict[str, Any] | None]: ... | ||
) -> Callable[..., DataContainer | dict[str, Any] | None]: ... # noqa: F405 |
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 .tektronix import * | ||
from .tektronix import * # noqa: F403 |
Oops, something went wrong.