Skip to content

Commit a293952

Browse files
authored
Fix black check
1 parent 50b945a commit a293952

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/jupyterlite_sphinx.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,11 @@ def jupyterlite_build(app: Sphinx, error):
269269
jupyterlite_config = app.env.config.jupyterlite_config
270270
jupyterlite_contents = app.env.config.jupyterlite_contents
271271
if jupyterlite_contents is not None:
272-
jupyterlite_contents = [match for pattern in jupyterlite_contents for match in glob.glob(pattern)]
272+
jupyterlite_contents = [
273+
match
274+
for pattern in jupyterlite_contents
275+
for match in glob.glob(pattern)
276+
]
273277
jupyterlite_dir = app.env.config.jupyterlite_dir
274278

275279
config = []

0 commit comments

Comments
 (0)