Skip to content

Commit

Permalink
Remove ValidationError
Browse files Browse the repository at this point in the history
  • Loading branch information
allenporter committed Jul 15, 2023
1 parent 91790a0 commit 89175ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flux_local/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
import aiofiles
import yaml
try:
from pydantic.v1 import BaseModel, Field, ValidationError
from pydantic.v1 import BaseModel, Field
except ImportError:
from pydantic import BaseModel, Field, ValidationError
from pydantic import BaseModel, Field

from .exceptions import InputException

Expand Down

0 comments on commit 89175ba

Please sign in to comment.