Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Zhang <kzhang@tecton.ai>
  • Loading branch information
kevjumba committed Jul 25, 2022
1 parent f4c3aa1 commit f54ce10
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sdk/python/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@

os.environ["FEAST_USAGE"] = "False"
os.environ["IS_TEST"] = "True"
from feast import FeatureStore
from feast.wait import wait_retry_backoff
from tests.data.data_creator import create_basic_driver_dataset
from tests.integration.feature_repos.integration_test_repo_config import (
from feast import FeatureStore # noqa: E402
from feast.wait import wait_retry_backoff # noqa: E402
from tests.data.data_creator import create_basic_driver_dataset # noqa: E402
from tests.integration.feature_repos.integration_test_repo_config import ( # noqa: E402
IntegrationTestRepoConfig,
)
from tests.integration.feature_repos.repo_configuration import (
from tests.integration.feature_repos.repo_configuration import ( # noqa: E402
AVAILABLE_OFFLINE_STORES,
AVAILABLE_ONLINE_STORES,
OFFLINE_STORE_TO_PROVIDER_CONFIG,
Expand All @@ -42,7 +42,7 @@
construct_test_environment,
construct_universal_test_data,
)
from tests.integration.feature_repos.universal.data_sources.file import (
from tests.integration.feature_repos.universal.data_sources.file import ( # noqa: E402
FileDataSourceCreator,
)

Expand Down

0 comments on commit f54ce10

Please sign in to comment.