Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
viniciusdc committed Nov 13, 2024
1 parent 54d691f commit 6b32630
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/_nebari/stages/infrastructure/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import tempfile
from typing import Annotated, Any, Dict, List, Literal, Optional, Tuple, Type, Union

from pydantic import Field, field_validator, model_validator
from pydantic import Field, PrivateAttr, field_validator, model_validator

from _nebari import constants
from _nebari.provider import terraform
Expand Down Expand Up @@ -135,11 +135,8 @@ class AWSAmiTypes(str, enum.Enum):


class AWSNodeLaunchTemplate(schema.Base):
class Config:
underscore_attrs_are_private = True

pre_bootstrap_command: Optional[str] = None
_ami_id: Optional[str] = None
_ami_id: Optional[str] = PrivateAttr(default=None)


class AWSNodeGroupInputVars(schema.Base):
Expand Down

0 comments on commit 6b32630

Please sign in to comment.