Skip to content

Commit

Permalink
Fix '01_working_with_penai' notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
kklemon committed Oct 24, 2024
1 parent a5d5348 commit 6891d2b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/02_notebooks/01_working_with_penai.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -12,7 +12,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
Expand Down Expand Up @@ -73,11 +73,11 @@
"metadata": {},
"outputs": [],
"source": [
"# Load a project from a project folder\n",
"project = PenpotProject.from_directory(\"../../data/raw/designs/Material Design 3\")\n",
"# Load a project from the example project registry\n",
"project = SavedPenpotProject.MATERIAL_DESIGN_3.load(pull=True)\n",
"\n",
"# OR load a project from the example project registry\n",
"project = SavedPenpotProject.MATERIAL_DESIGN_3.load(pull=True)"
"# OR from a project folder\n",
"# project = PenpotProject.from_directory(\"../../data/raw/designs/Material Design 3\")"
]
},
{
Expand Down

0 comments on commit 6891d2b

Please sign in to comment.