Skip to content
This repository was archived by the owner on Feb 14, 2024. It is now read-only.

Commit 203663f

Browse files
committed
Remove unused imports
1 parent 4c6efbc commit 203663f

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

jupyterlite_xeus_python/build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def build_and_pack_emscripten_env(
267267

268268
# Bail early if there is nothing to do
269269
if bail_early and not force:
270-
return []
270+
return ""
271271

272272
orig_config = os.environ.get("CONDARC")
273273

jupyterlite_xeus_python/env_build_addon.py

+1-10
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,10 @@
22
import json
33
import os
44
from pathlib import Path
5-
import requests
6-
import shutil
7-
from subprocess import check_call, run, DEVNULL
85
from tempfile import TemporaryDirectory
9-
from urllib.parse import urlparse
10-
11-
import yaml
126

137
from traitlets import List, Unicode
148

15-
from empack.pack import pack_env, DEFAULT_CONFIG_PATH
16-
from empack.file_patterns import PkgFileFilter, pkg_file_filter_from_yaml
17-
189
from jupyterlite_core.constants import (
1910
SHARE_LABEXTENSIONS,
2011
LAB_EXTENSIONS,
@@ -42,7 +33,7 @@ class XeusPythonEnv(FederatedExtensionAddon):
4233
)
4334

4435
empack_config = Unicode(
45-
None,
36+
"",
4637
config=True,
4738
allow_none=True,
4839
description="The path or URL to the empack config file",

0 commit comments

Comments
 (0)