Skip to content

Commit

Permalink
fix: removing unnecessary Path object construction
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Baron <dan.baron@starlingbank.com>
  • Loading branch information
danbaron63 committed Aug 15, 2024
1 parent 9364582 commit 7b2dd08
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 7b2dd08

Please sign in to comment.