Skip to content

Commit 7de2016

Browse files
committed
format
1 parent 0618378 commit 7de2016

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

sdk/python/feast/infra/online_stores/contrib/postgres_repo_configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
from tests.integration.feature_repos.universal.online_store.postgres import (
2-
PostgresOnlieStoreCreator,
3-
)
41
from tests.integration.feature_repos.integration_test_repo_config import (
52
IntegrationTestRepoConfig,
63
)
4+
from tests.integration.feature_repos.universal.online_store.postgres import (
5+
PostgresOnlieStoreCreator,
6+
)
77

88
FULL_REPO_CONFIGS = [
99
IntegrationTestRepoConfig(

sdk/python/tests/integration/feature_repos/universal/online_store/postgres.py

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,12 @@
1010
class PostgresOnlieStoreCreator(OnlineStoreCreator):
1111
def __init__(self, project_name: str, **kwargs):
1212
super().__init__(project_name)
13-
self.container = (
14-
PostgresContainer(
15-
"postgres:16",
16-
username="root",
17-
password="test",
18-
dbname="test",
19-
)
20-
.with_exposed_ports(5432)
21-
)
13+
self.container = PostgresContainer(
14+
"postgres:16",
15+
username="root",
16+
password="test",
17+
dbname="test",
18+
).with_exposed_ports(5432)
2219

2320
def create_online_store(self) -> Dict[str, str]:
2421
self.container.start()

0 commit comments

Comments
 (0)