Skip to content

Commit

Permalink
Fix string
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremykubica committed Sep 20, 2024
1 parent 1b6bab7 commit 136408d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/kbmod/reprojection.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# The number of executors to use in the parallel reprojecting function.
MAX_PROCESSES = 8
_DEFAULT_TQDM_BAR = ("{l_bar}{bar}| {n_fmt}/{total_fmt} [{elapsed}]",)
_DEFAULT_TQDM_BAR = "{l_bar}{bar}| {n_fmt}/{total_fmt} [{elapsed}]"


def reproject_image(image, original_wcs, common_wcs):
Expand Down
2 changes: 1 addition & 1 deletion src/kbmod/work_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from kbmod.reprojection_utils import invert_correct_parallax


_DEFAULT_WORKUNIT_TQDM_BAR = ("{l_bar}{bar}| {n_fmt}/{total_fmt} [{elapsed}]",)
_DEFAULT_WORKUNIT_TQDM_BAR = "{l_bar}{bar}| {n_fmt}/{total_fmt} [{elapsed}]"


logger = Logging.getLogger(__name__)
Expand Down

0 comments on commit 136408d

Please sign in to comment.