Skip to content

Instantly share code, notes, and snippets.

@pep8speaks
Created May 18, 2022 08:10
Show Gist options
  • Save pep8speaks/b7ac20b954545cb2c1f75d7c621a09ef to your computer and use it in GitHub Desktop.
Save pep8speaks/b7ac20b954545cb2c1f75d7c621a09ef to your computer and use it in GitHub Desktop.
--- original/file_to_fix.py
+++ fixed/file_to_fix.py
@@ -8,9 +8,9 @@
prints asdf
"""
x = None
- i =2+1
- if i==5:
- i = 6
- elif (x== None):
- x = "asdf"
- print( x )
+ i = 2 + 1
+ if i == 5:
+ i = 6
+ elif (x == None):
+ x = "asdf"
+ print(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment