Skip to content

Commit

Permalink
Indentation Error (#388)
Browse files Browse the repository at this point in the history
Fixes a non-critical indentation error that was occurring with the most recent release.
  • Loading branch information
kjkoeller authored Dec 17, 2024
1 parent 429c924 commit a00da73
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions EclipsingBinaries/menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import threading
import queue
import time
import textwrap


def dynamic_import(progress_queue):
Expand All @@ -21,12 +22,12 @@ def dynamic_import(progress_queue):
("astropy", "from astropy.nddata import CCDData"),
("astroquery", "from astroquery.mast import Tesscut"),
("matplotlib", "from matplotlib import pyplot as plt"),
("custom_scripts", """
from IRAF_Reduction import run_reduction
from tess_data_search import run_tess_search
from apass import comparison_selector
from multi_aperture_photometry import main as multi_ap
"""),
("custom_scripts", textwrap.dedent("""
from .IRAF_Reduction import run_reduction
from .tess_data_search import run_tess_search
from .apass import comparison_selector
from .multi_aperture_photometry import main as multi_ap
""")),
]
total = len(packages)

Expand Down
2 changes: 1 addition & 1 deletion EclipsingBinaries/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Version
__version__ = "5.0.0a7"
__version__ = "5.0.0a8"

0 comments on commit a00da73

Please sign in to comment.