Skip to content

Commit

Permalink
fix: package resolution (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
badayvedat authored Jan 26, 2024
1 parent 4b16314 commit 3f067db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/fal/src/fal/_serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def by_value_locator(obj, pickler=None, og_locator=_dill._locate_function):


def include_packages_from_path(raw_path: str):
path = Path(raw_path)
path = Path(raw_path).resolve()
parent = path
while (parent.parent / "__init__.py").exists():
parent = parent.parent
Expand Down

0 comments on commit 3f067db

Please sign in to comment.