Issue template: Add Python code formatting (#1485)

Makes things a bit more readable
This commit is contained in:
Hugo van Kemenade 2020-06-15 19:15:11 +03:00 committed by GitHub
parent b2c13de490
commit ea03b6c5e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ improved.
**Examples in the current _Black_ style** Think of some short code snippets that show
how the current _Black_ style is not great:
```
```python
def f():
"Make sure this code is blackened"""
pass
@ -20,7 +20,7 @@ def f():
**Desired style** How do you think _Black_ should format the above snippets:
```
```python
def f(
):
pass