Skip to content

Commit 7c7bfa1

Browse files
authored
Merge pull request #36 from ElcanoTek/codex/delay-opening-folder-in-victoria.py
Move folder open until after destination checks
2 parents 6bd43e6 + 2d5710b commit 7c7bfa1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

victoria.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -721,8 +721,6 @@ def main():
721721

722722
print(f"{T.CYAN}{T.FOLDER} Place files to analyze in: {T.WHITE}{APP_HOME}{T.NC}")
723723
print(f"{T.DIM}file://{APP_HOME}{T.NC}")
724-
open_victoria_folder()
725-
726724
print(f"{T.GREEN}{T.ROCKET} Welcome to Victoria - Your AdTech Data Navigator!{T.NC}")
727725

728726
# Show terminal capabilities for debugging (remove in production)
@@ -774,6 +772,7 @@ def main():
774772

775773
print(f"\n{T.GREEN}{T.WAVE} FULL OCEAN EXPEDITION READY{T.NC}")
776774
print(f"{T.CYAN}Launching Victoria with complete data access...{T.NC}")
775+
open_victoria_folder()
777776
launch_tool()
778777

779778
else: # choice == "2"
@@ -791,6 +790,7 @@ def main():
791790

792791
print(f"\n{T.CYAN}{T.ANCHOR} COASTAL NAVIGATION READY{T.NC}")
793792
print(f"{T.CYAN}Launching Victoria with local data access...{T.NC}")
793+
open_victoria_folder()
794794
launch_tool()
795795

796796
if __name__ == "__main__":

0 commit comments

Comments
 (0)