Skip to content

Commit 95eb45c

Browse files
committed
linting
1 parent 84237af commit 95eb45c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sdk/python/feast/infra/offline_stores/bigquery.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import pandas as pd
2020
import pyarrow
2121
import pyarrow.parquet
22-
from pydantic import StrictStr, validator, ConstrainedStr
22+
from pydantic import ConstrainedStr, StrictStr, validator
2323
from pydantic.typing import Literal
2424
from tenacity import Retrying, retry_if_exception_type, stop_after_delay, wait_fixed
2525

@@ -71,9 +71,11 @@
7171
def get_http_client_info():
7272
return http_client_info.ClientInfo(user_agent=get_user_agent())
7373

74+
7475
class BigQueryTableCreateDisposition(ConstrainedStr):
7576
"""Custom constraint for table_create_disposition. To understand more, see:
7677
https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationLoad.FIELDS.create_disposition"""
78+
7779
values = {"CREATE_NEVER", "CREATE_IF_NEEDED"}
7880

7981

0 commit comments

Comments
 (0)