Skip to content

Fix missing uuid import in lab.py#18

Open
arya2807 wants to merge 1 commit into
ExperQuick:mainfrom
arya2807:fix/add-missing-uuid-import
Open

Fix missing uuid import in lab.py#18
arya2807 wants to merge 1 commit into
ExperQuick:mainfrom
arya2807:fix/add-missing-uuid-import

Conversation

@arya2807

Copy link
Copy Markdown

Fixes #13

Summary

This PR adds the missing from uuid import uuid4 import statement to src/plf/lab.py. The uuid4().hex function is currently used in create_clone() (line 238) without the required import, causing a NameError when the function is called.

Changes

  • Added from uuid import uuid4 after the existing from pathlib import Path import.

Testing

  • Verified that the import resolves the missing module error.
  • Confirmed create_clone() can now generate unique identifiers without runtime errors.

Impact

No breaking changes; only restores intended functionality.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add missing uuid import for create_clone function

1 participant