Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Align path format for windows. #243

Merged
merged 17 commits into from
Nov 9, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
No need for .keys().
  • Loading branch information
davidbrochart authored Nov 9, 2022
commit a7a58dc044a18e133b9ac80b37cfa343cc49ca2a
2 changes: 1 addition & 1 deletion plugins/lab/fps_lab/utils.py
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ def get_federated_extensions(extensions_dir: Path) -> Tuple[List, List]:
for path in extensions_dir.rglob("**/package.json"):
with open(path) as f:
package = json.load(f)
if "jupyterlab" not in package.keys():
if "jupyterlab" not in package:
continue
name = package["name"]
extension = package["jupyterlab"]["_build"]