Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: removing unnecessary Path object construction
Signed-off-by: Dan Baron <dan.baron@starlingbank.com>
  • Loading branch information
danbaron63 committed Aug 15, 2024
commit 7b2dd08a0467a04583c1efe2b2b26a887c1b24e6
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ def setup(self, registry: RegistryConfig):
repo_path = Path(tempfile.mkdtemp())
with open(repo_path / "feature_store.yaml", "w") as outfile:
yaml.dump(config.model_dump(by_alias=True), outfile)
repo_path = Path(str(repo_path.resolve()))
repo_path = repo_path.resolve()

self.server_port = free_port()
host = "0.0.0.0"
Expand Down