Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add RSA API and fix imports #987

Merged
merged 6 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions pkgs/flojoy/flojoy/__init__.py
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
39 changes: 19 additions & 20 deletions pkgs/flojoy/flojoy/__init__.pyi
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
2 changes: 1 addition & 1 deletion pkgs/flojoy/flojoy/instruments/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .tektronix import *
from .tektronix import * # noqa: F403
Loading
Loading