Skip to content
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions configuration/jsr223.md
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ logger.error("I am logged first.")

::: tab Python

When the setting "Use scope and import wrapper" is enabled, the `scope` module is available:
When the setting “Python environment” is not “Disable completely”:

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use proper quotes:

Suggested change
When the setting Python environment is not Disable completely:
When the setting "Python environment" is not "Disable completely":

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I use proper quotes. https://www.openhab.org/docs/#putting-it-into-practice also uses proper quotes


```python
import sys
Expand All @@ -840,7 +840,7 @@ scope.lifecycleTracker.addDisposeHook(lambda : print("I am logged fourth. Bye!")
print("I am logged first.")
```

When the `scope` module is disabled:
When the setting “Python Environment” is “Disable completely”:

```python
import sys
Expand Down