Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions code/scripts/run.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import sys
sys.path.insert(0, '/code/src')

from package.module import jake_variable
print(jake_variable)
sys.path.insert(0, "/code/src")

from package.module import variable

print(variable)
2 changes: 1 addition & 1 deletion code/src/package/module.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
jake_variable = 'better variable than dan'
variable = "janne was here on Friday, August 29, 2025 at 9:39 AM PT"