We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec35262 commit 4421605Copy full SHA for 4421605
.vscode/settings.json
@@ -0,0 +1,15 @@
1
+{
2
+ "[python][jsonc][yaml]": {
3
+ "editor.formatOnSave": true,
4
+ },
5
+ "[python]": {
6
+ "editor.defaultFormatter": "charliermarsh.ruff",
7
+ "editor.codeActionsOnSave": {
8
+ "source.fixAll": "always",
9
+ "source.organizeImports": "always",
10
11
12
+ "[jsonc][yaml]": {
13
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
14
15
+}
src/prelude_runner/cli.py
@@ -1,6 +1,7 @@
from argparse import ArgumentParser
from pathlib import Path
from typing import Protocol
+
import nbformat
from .core import Preludes, execute
0 commit comments