Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
braingram committed Dec 6, 2023
1 parent bcf4525 commit 2408932
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion asdf/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,9 @@ def resolve_name(name):
If the module or named object is not found.
"""

warnings.warn("asdf.util.resolve_name is deprecated, see astropy.utils.resolve_name", exceptions.AsdfDeprecationWarning)
warnings.warn(
"asdf.util.resolve_name is deprecated, see astropy.utils.resolve_name", exceptions.AsdfDeprecationWarning
)

# Note: On python 2 these must be str objects and not unicode
parts = [str(part) for part in name.split(".")]
Expand Down

0 comments on commit 2408932

Please sign in to comment.