Skip to content

Commit 0656a76

Browse files
committed
Don't put emoji in terminal
1 parent dcd8f74 commit 0656a76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@ We've reimagined data engineering for the data science era. Prefect is a new wor
4040
Read the [docs](/introduction.html); get the [code](/agreement.html); ask us [anything](mailto:help@prefect.io)!
4141

4242

43-
### Hello, world!
43+
### Hello, world! 👋
4444

4545
```python
4646
from prefect import task, Flow
4747

4848
@task
4949
def say_hello():
50-
print("Hello, world! 👋")
50+
print("Hello, world!")
5151

5252
with Flow('My First Flow') as flow:
5353
say_hello()
5454

55-
flow.run() # "Hello, world! 👋"
55+
flow.run() # "Hello, world!"
5656
```

0 commit comments

Comments
 (0)