Skip to content

Commit 7b2dd08

Browse files
committed
fix: removing unnecessary Path object construction
Signed-off-by: Dan Baron <dan.baron@starlingbank.com>
1 parent 9364582 commit 7b2dd08

File tree

1 file changed

+1
-1
lines changed
  • sdk/python/tests/integration/feature_repos/universal/data_sources

1 file changed

+1
-1
lines changed

sdk/python/tests/integration/feature_repos/universal/data_sources/file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ def setup(self, registry: RegistryConfig):
383383
repo_path = Path(tempfile.mkdtemp())
384384
with open(repo_path / "feature_store.yaml", "w") as outfile:
385385
yaml.dump(config.model_dump(by_alias=True), outfile)
386-
repo_path = Path(str(repo_path.resolve()))
386+
repo_path = repo_path.resolve()
387387

388388
self.server_port = free_port()
389389
host = "0.0.0.0"

0 commit comments

Comments
 (0)