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

Upgrade to python 3.12 #158

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
removed unused noqa
  • Loading branch information
bcdurak committed May 7, 2024
commit 9c812f1e284a8958bd72b1fde8d6b1f6bd1a96a0
2 changes: 1 addition & 1 deletion src/mlstacks/models/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class Component(BaseModel):

@field_validator("name")
@classmethod
def validate_name(cls, name: str) -> str: # noqa: N805
def validate_name(cls, name: str) -> str:
"""Validate the name.

Name must start with an alphanumeric character and can only contain
Expand Down
2 changes: 1 addition & 1 deletion src/mlstacks/models/stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class Stack(BaseModel):

@field_validator("name")
@classmethod
def validate_name(cls, name: str) -> str: # noqa: N805
def validate_name(cls, name: str) -> str:
"""Validate the name.

Name must start with an alphanumeric character and can only contain
Expand Down
Loading