Skip to content

Commit 19aee8e

Browse files
author
Sarah Wagner
committed
(★‿★) more pythonic naming convention
1 parent 255f482 commit 19aee8e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lightcurves/hop_finder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import numpy as np
66

77
# from lightcurves.LC import LightCurve
8-
from lightcurves.HOP import Hopject
8+
from lightcurves.hop import Hopject
99

1010
logging.basicConfig(level=logging.ERROR)
1111
"""

src/lightcurves/lc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from matplotlib.axes import Axes # for type hints only
1212

1313
# https://docs.astropy.org/en/stable/api/astropy.stats.bayesian_blocks.html
14-
import lightcurves.HopFinder as hf
14+
import lightcurves.hop_finder as hf
1515

1616
logging.basicConfig(level=logging.ERROR)
1717
"""

0 commit comments

Comments
 (0)