##// END OF EJS Templates
Apply black to IPython/extensions/autoreload.py...
Apply black to IPython/extensions/autoreload.py black --target-version py36 IPython/extensions/autoreload.py To ignore those changes when using git blame see the content of .git-blame-ignore-revs

File last commit:

r16136:94a4d14e
r26246:50624b84
Show More
list_pyfiles.ipy
5 lines | 182 B | text/plain | TextLexer
# A simple IPython script that provides Notebook links to .py files in the cwd
from IPython.display import FileLink, display
files =!ls *.py
for f in files:
display(FileLink(f))