Skip to content

Commit

Permalink
STY: fixed indentation
Browse files Browse the repository at this point in the history
Fix over indented lines.
  • Loading branch information
aburrell committed May 1, 2024
1 parent 09da329 commit 0fb19ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ocbpy/ocb_scaling.py
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ def aacgm_mag(self):
# TODO(#133): remove after old attributes are deprecated
warnings.warn("".join(['`aacgm_mag` has been replaced with `vect_mag`,',
' and will be removed in version 0.4.1+.']),
DeprecationWarning, stacklevel=2)
DeprecationWarning, stacklevel=2)
return self.vect_mag

@property
Expand Down Expand Up @@ -692,7 +692,7 @@ def aacgm_lat(self):
# TODO(#133): remove after old attributes are deprecated
warnings.warn("".join(['`aacgm_lat` has been replaced with `lat`, and ',
'will be removed in version 0.4.1+.']),
DeprecationWarning, stacklevel=2)
DeprecationWarning, stacklevel=2)
return self.lat

@property
Expand All @@ -712,7 +712,7 @@ def aacgm_mlt(self):
# TODO(#133): remove after old attributes are deprecated
warnings.warn("".join(['`aacgm_mlt` has been replaced with `lt`, and ',
'will be removed in version 0.4.1+.']),
DeprecationWarning, stacklevel=2)
DeprecationWarning, stacklevel=2)
return self.lt

@property
Expand Down

0 comments on commit 0fb19ed

Please sign in to comment.