more import errors

This commit is contained in:
hay-kot 2021-03-21 17:14:35 -08:00
commit 02577532ee
3 changed files with 4 additions and 8 deletions

View file

@ -50,5 +50,4 @@ jobs:
#----------------------------------------------
- name: Run tests
run: |
source .venv/bin/activate
pytest
poetry run pytest

View file

@ -3,8 +3,6 @@
"python.pythonPath": ".venv/bin/python3.9",
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"python.autoComplete.extraPaths": ["mealie", "mealie/mealie"],
"python.analysis.extraPaths": ["mealie", "mealie/mealie"],
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestEnabled": true,

View file

@ -1,13 +1,12 @@
from typing import Any, Optional
from typing import Optional
from fastapi_camelcase import CamelModel
from mealie.core.config import DEFAULT_GROUP
from mealie.db.models.group import Group
from mealie.db.models.users import User
from fastapi_camelcase import CamelModel
from pydantic.utils import GetterDict
from mealie.schema.category import CategoryBase
from mealie.schema.meal import MealPlanInDB
from pydantic.utils import GetterDict
class ChangePassword(CamelModel):