Skip to content

Commit

Permalink
pydantic settings package
Browse files Browse the repository at this point in the history
  • Loading branch information
nekufa committed Sep 12, 2023
1 parent e9967a3 commit e8f2854
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion sharded_queue/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
from typing import (Any, AsyncGenerator, Generic, List, NamedTuple, Optional,
Protocol, Self, Sequence, TypeVar, get_type_hints)

from pydantic import BaseSettings, Field
from pydantic import Field
from pydantic_settings import BaseSettings

T = TypeVar('T')

Expand Down

0 comments on commit e8f2854

Please sign in to comment.