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

Commit

Permalink
Browse files Browse the repository at this point in the history
Decided to go with tqdm instead of curses
  • Loading branch information
daminton committed Nov 21, 2022
1 parent 0168fab commit fb1764f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/swiftest/swiftest/simulation_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import json
import os
from pathlib import Path
import curses
import datetime
import xarray as xr
import numpy as np
Expand Down Expand Up @@ -426,7 +425,7 @@ def run(self,**kwargs):

print(f"Running a {self.codename} {self.integrator} run from tstart={self.param['TSTART']} {self.TU_name} to tstop={self.param['TSTOP']} {self.TU_name}")

curses.wrapper(self._run_swiftest_driver())
self._run_swiftest_driver()

# Read in new data
self.bin2xr()
Expand Down

0 comments on commit fb1764f

Please sign in to comment.