nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 17 lines 645 B view raw
1diff --git a/src/exo/utils/dashboard_path.py b/src/exo/utils/dashboard_path.py 2index b5ce9c04..ec60ef4a 100644 3--- a/src/exo/utils/dashboard_path.py 4+++ b/src/exo/utils/dashboard_path.py 5@@ -5,11 +5,7 @@ from typing import cast 6 7 8 def find_dashboard() -> Path: 9- dashboard = ( 10- _find_dashboard_in_env() 11- or _find_dashboard_in_repo() 12- or _find_dashboard_in_bundle() 13- ) 14+ dashboard = "@dashboard@" 15 if not dashboard: 16 raise FileNotFoundError( 17 "Unable to locate dashboard assets - make sure the dashboard has been built, or export DASHBOARD_DIR if you've built the dashboard elsewhere."