Skip to content

Commit

Permalink
explicit imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Deus1704 committed Jun 25, 2024
1 parent b74ff29 commit 3b80fdb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions sunkit_image/coalignment_module/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from .interface import *
from .match_template import *
from .util.decorators import *
from .interface import coalignment
from .match_template import match_template_coalign
from .util.decorators import register_coalignment_method

__all__ = ["coalignment", "match_template_coalign", "register_coalignment_method"]
2 changes: 1 addition & 1 deletion sunkit_image/coalignment_module/match_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def match_template_coalign(input_array, template_array):
Returns
-------
tuple
A tuple where the first element is the coaligned array and the second element is another tuple containing the
A tuple where the first element is the coaligned array and the second element is another tuple containing the
shifts in x and y directions (x_shift, y_shift),
"""
corr = match_template(np.float64(input_array), np.float64(template_array))
Expand Down

0 comments on commit 3b80fdb

Please sign in to comment.