Skip to content

Commit d0e3520

Browse files
committed
fix: DirPackageLocation already points to dist
1 parent e0faabb commit d0e3520

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

questionpy_server/utils/manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ async def read_manifest_from_location(location: PackageLocation) -> Manifest:
7676
if isinstance(location, FunctionPackageLocation):
7777
return Manifest(**location.manifest.model_dump())
7878

79-
manifest_path = location.path / DIST_DIR / MANIFEST_FILENAME
79+
manifest_path = location.path / MANIFEST_FILENAME
8080
return await to_thread(_read_manifest_from_path_sync, manifest_path)
8181

8282

0 commit comments

Comments
 (0)