Skip to content

Commit

Permalink
remove useless imports
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Leclerc <[email protected]>
  • Loading branch information
sylvlecl committed Oct 7, 2024
1 parent faf164d commit a48b857
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/antares_web_installer/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import textwrap
import time
import webbrowser
from abc import abstractclassmethod, ABC, abstractmethod
from contextlib import suppress
from difflib import SequenceMatcher
from pathlib import Path
Expand Down Expand Up @@ -281,6 +280,8 @@ def start_server(self):
server_process = subprocess.Popen(
args=args,
cwd=self.target_dir,
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
shell=True,
)
self.update_progress(50)
Expand Down

0 comments on commit a48b857

Please sign in to comment.