diff --git a/apps/python-dsl/public/examples/example.py b/apps/python-dsl/public/examples/example.py index 9b02fe63..7f0b3a11 100644 --- a/apps/python-dsl/public/examples/example.py +++ b/apps/python-dsl/public/examples/example.py @@ -1,10 +1,10 @@ # Example of projections puts, increment (++), times +# Example of projections puts, increment (++), times + counter = 0 -print("Hello, the counter is: ", end="") -print(counter) +print(f"Counter is initially {counter}") -counter = 1 for index in range(10): counter += 1 print("Counter is now: ", end="") diff --git a/apps/python-dsl/src/projections/TimesProjection.svelte b/apps/python-dsl/src/projections/TimesProjection.svelte index da04e996..023d3e72 100644 --- a/apps/python-dsl/src/projections/TimesProjection.svelte +++ b/apps/python-dsl/src/projections/TimesProjection.svelte @@ -45,7 +45,4 @@ .noindent { margin-left: -10px; } - .text-right { - text-align: right; - }