Skip to content

Commit

Permalink
Minuscule Reame improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
micoloth committed Feb 27, 2024
1 parent 347c43a commit 1198ce4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@

# A Reactive Jupyter Extension for Visual Studio Code



<h1 style="text-align: center;">A Reactive Jupyter Extension for Visual Studio Code</h1>


<p align="center">
<img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-yellow.svg">
<img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/networkx">
Expand Down Expand Up @@ -76,7 +81,7 @@ As a workaround for this limitation, you can do 2 things:
mylist = append_to_list(mylist, 1)
```

- When you perform an impure operation, always join it to a statement that reassigns the variable to itself, like this: `mylist = mylist`. This is free in Python, and will correctly propagate the dependency to the next statements.
- Or, when you perform an impure operation, always join it to a statement that reassigns the variable to itself, like this: `mylist = mylist`. This is free in Python, and will correctly propagate the dependency to the next statements.

This second methods requires joining several statements into a single execution "block" or "cell", that will always be executed as a single unit.

Expand Down

0 comments on commit 1198ce4

Please sign in to comment.