Move all images to images dir (#1972)

This commit is contained in:
Ayaz Salikhov
2023-08-19 17:25:20 +02:00
committed by GitHub
parent feb88727d1
commit a5b40a6f11
46 changed files with 7 additions and 36 deletions

View File

@@ -0,0 +1,14 @@
# Configuration file for ipython-kernel.
# See <https://ipython.readthedocs.io/en/stable/config/options/kernel.html>
# With IPython >= 6.0.0, all outputs to stdout/stderr are captured.
# It is the case for subprocesses and output of compiled libraries like Spark.
# Those logs now both head to notebook logs and in notebooks outputs.
# Logs are particularly verbose with Spark, that is why we turn them off through this flag.
# <https://github.com/jupyter/docker-stacks/issues/1423>
# Attempt to capture and forward low-level output, e.g. produced by Extension
# libraries.
# Default: True
# type:ignore
c.IPKernelApp.capture_fd_output = False # noqa: F821