Skip to content

Commit

Permalink
Update d2x/models/sf/auth.py to use ConfigDict instead of class-b…
Browse files Browse the repository at this point in the history
…ased `config`

* Import `ConfigDict` from `pydantic` module
  • Loading branch information
jlantz committed Oct 30, 2024
1 parent 2bcd30a commit 750581c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion d2x/models/sf/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from datetime import datetime, timedelta
from enum import Enum
from typing import Optional, Literal
from pydantic import BaseModel, Field, SecretStr, computed_field
from pydantic import BaseModel, Field, SecretStr, computed_field, ConfigDict
from rich.table import Table
from rich import box
from d2x.base.models import CommonBaseModel
Expand Down

0 comments on commit 750581c

Please sign in to comment.