Skip to content

Commit

Permalink
chore: API docs
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybayblade committed Jan 29, 2024
1 parent da71757 commit 76d98d5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/api/deploy/base.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ Class to assist with generating deployments.

```python
def __init__(service: Service,
keys: Optional[List[Dict[str, str]]] = None,
keys: Optional[List[Union[List[Dict[str, str]],
Dict[str, str]]]] = None,
agent_instances: Optional[List[str]] = None,
apply_environment_variables: bool = False) -> None
```
Expand Down Expand Up @@ -117,7 +118,7 @@ Agent instances setter.

```python
@property
def keys() -> List[Dict[str, str]]
def keys() -> List[Union[List[Dict[str, str]], Dict[str, str]]]
```

Keys.
Expand All @@ -144,7 +145,7 @@ Service builder from path.

```python
@staticmethod
def verify_agent_instances(keys: List[Dict[str, str]],
def verify_agent_instances(addresses: Set[str],
agent_instances: List[str]) -> None
```

Expand Down

0 comments on commit 76d98d5

Please sign in to comment.