Skip to content

Commit

Permalink
fix: remove else clause
Browse files Browse the repository at this point in the history
  • Loading branch information
zabarn committed Oct 22, 2024
1 parent 2a6c4d6 commit 1a258d8
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions sdk/python/feast/infra/passthrough_provider.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from datetime import datetime, timedelta
import logging
from datetime import datetime, timedelta
from typing import Any, Callable, Dict, List, Mapping, Optional, Sequence, Tuple, Union

import pandas as pd
Expand Down Expand Up @@ -334,10 +334,6 @@ def materialize_single_feature_view(
entities_to_keep=registry.list_entities(project=project),
partial=True,
)
else:
logger.info(
f"Online store {config.online_store.__class__.__name__} does not support lazy table creation or it is disabled"
)

task = MaterializationTask(
project=project,
Expand Down

0 comments on commit 1a258d8

Please sign in to comment.