Skip to content

Commit

Permalink
PEP8 and updating version after recent merge
Browse files Browse the repository at this point in the history
  • Loading branch information
rpoleski committed Feb 1, 2022
1 parent 5af3f46 commit 5a26ce4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
)
ext_VBBL = Extension(
"MulensModel.VBBL",
sources=[str(f.relative_to(PROJECT_PATH)) for f in source_VBBL.glob("*.cpp")],
sources=[
str(f.relative_to(PROJECT_PATH)) for f in source_VBBL.glob("*.cpp")],
libraries=["m"],
)

Expand Down
2 changes: 1 addition & 1 deletion source/MulensModel/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def _plot_lc_default(

if residuals:
plt.xlabel(None)
#plt.gca().xaxis.set_ticklabels([])
# plt.gca().xaxis.set_ticklabels([])
plt.subplot(gs[1], sharex=ax11)
self.plot_residuals(
subtract_2450000=subtract_2450000,
Expand Down
2 changes: 1 addition & 1 deletion source/MulensModel/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.4.4"
__version__ = "2.4.5"

0 comments on commit 5a26ce4

Please sign in to comment.