Skip to content

Commit

Permalink
fix type error for py38/39 (#171)
Browse files Browse the repository at this point in the history
Co-authored-by: Luke Lombardi <[email protected]>
  • Loading branch information
luke-lombardi and Luke Lombardi authored Apr 30, 2024
1 parent 2b56c59 commit f6a47a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sdk/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "beta9"
version = "0.1.8"
version = "0.1.9"
description = ""
authors = ["beam.cloud <[email protected]>"]
packages = [
Expand Down
4 changes: 2 additions & 2 deletions sdk/src/beta9/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import socket
from dataclasses import asdict, dataclass
from pathlib import Path
from typing import Any, Mapping, Optional, Tuple, Union
from typing import Any, Dict, Mapping, Optional, Tuple, Union

from . import terminal

Expand Down Expand Up @@ -51,7 +51,7 @@ def get_config_path(base_dir: str = "~/.beta9") -> Path:
return path


def load_config(path: Optional[Union[str, Path]] = None) -> dict[str, ConfigContext]:
def load_config(path: Optional[Union[str, Path]] = None) -> Dict[str, ConfigContext]:
if path is None:
path = get_config_path()

Expand Down

0 comments on commit f6a47a0

Please sign in to comment.