Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fixes syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
desertaxle committed Feb 27, 2024
1 parent 3bf96cb commit f086f03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prefect_aws/glue_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
from pydantic import VERSION as PYDANTIC_VERSION

if PYDANTIC_VERSION.startswith("2."):
from pydantic.v1 import Field, BaseModel
from pydantic.v1 import BaseModel, Field
else:
from pydantic import Field, BaseModel
from pydantic import BaseModel, Field

from prefect_aws import AwsCredentials

Expand Down

0 comments on commit f086f03

Please sign in to comment.