Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1552 from s-m-e/fix_pylint_e0604
Browse files Browse the repository at this point in the history
fix pylint invalid-all-object / E0604 in propagators
  • Loading branch information
astrojuanlu committed Jul 22, 2022
2 parents 3581e88 + 9421f7d commit c1def1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poliastro/twobody/propagation/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@
]


__all__ = ALL_PROPAGATORS + ["propagate"]
__all__ = [item.__name__ for item in ALL_PROPAGATORS] + ["propagate"]

0 comments on commit c1def1f

Please sign in to comment.