Dallinger/Dallinger

View on GitHub
dallinger/patches.py

Summary

Maintainability
A
0 mins
Test Coverage
def patch_ipython():
    try:
        from ipykernel.iostream import OutStream
    except ImportError:
        return
    else:
        OutStream.writable = lambda self: True


def patch():
    patch_ipython()