Skip to content

Commit

Permalink
remove unused pydantic models
Browse files Browse the repository at this point in the history
  • Loading branch information
elmjag authored and marcus-oscarsson committed Oct 11, 2023
1 parent 82a79dd commit d784fef
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions mxcube3/core/models/generic.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,8 @@
import pathlib

from typing import Union
from pydantic import BaseModel, Field
from mxcube3.core.models.configmodels import ModeEnum


class VersionModel(BaseModel):
version: str = Field("", description="Version")


class PathModel(BaseModel):
path: pathlib.Path = Field("", description="Path")


class SimpleNameValue(BaseModel):
name: str
value: Union[str, bool, int]
Expand Down

0 comments on commit d784fef

Please sign in to comment.