Skip to content

Commit 1e40137

Browse files
MAINT: Fix ruff E501 line too long in doc/conf.py jupyterlite setup
1 parent 241e67e commit 1e40137

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

doc/conf.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -519,11 +519,14 @@
519519
" url = self.get_url(fname)\n"
520520
" if 'osf.io' in url or 'files.osf.io' in url:\n"
521521
" raise RuntimeError(\n"
522-
" f'Cannot download {fname} natively in JupyterLite due to browser CORS restrictions '\n"
523-
" f'on OSF and memory limits. Please download the dataset locally and upload it '\n"
524-
" f'into the JupyterLite file browser.'\n"
522+
" f'Cannot download {fname} natively in JupyterLite '\n"
523+
" 'due to browser CORS restrictions on OSF and '\n"
524+
" 'memory limits. Please download the dataset locally '\n"
525+
" 'and upload it into the JupyterLite file browser.'\n"
525526
" )\n"
526-
" return orig_pooch_fetch(self, fname, processor=processor, downloader=downloader)\n"
527+
" return orig_pooch_fetch(\n"
528+
" self, fname, processor=processor, downloader=downloader\n"
529+
" )\n"
527530
"pooch.Pooch.fetch = pyodide_pooch_fetch\n"
528531
"\n"
529532
"# 2. Patch MNEBrowseFigure to auto-display in Pyodide's inline backend\n"

0 commit comments

Comments
 (0)