Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
olethanh committed Oct 22, 2024
1 parent f1b7839 commit a845ba5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aleph/vm/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ class Settings(BaseSettings):
description="Method used to resolve the dns server if DNS_NAMESERVERS is not present.",
)
DNS_NAMESERVERS: list[str] | None = None
DNS_NAMESERVERS_IPV4: list[str]
DNS_NAMESERVERS_IPV6: list[str]
DNS_NAMESERVERS_IPV4: list[str] | None
DNS_NAMESERVERS_IPV6: list[str] | None

FIRECRACKER_PATH = Path("/opt/firecracker/firecracker")
JAILER_PATH = Path("/opt/firecracker/jailer")
Expand Down

0 comments on commit a845ba5

Please sign in to comment.