Skip to content

Commit

Permalink
Fixed a docstring typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidT3 committed Nov 21, 2024
1 parent 3ac7a9f commit 590e994
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xga/models/base.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This code is a part of X-ray: Generate and Analyse (XGA), a module designed for the XMM Cluster Survey (XCS).
# Last modified by David J Turner (turne540@msu.edu) 07/08/2024, 10:14. Copyright (c) The Contributors
# Last modified by David J Turner (turne540@msu.edu) 20/11/2024, 21:32. Copyright (c) The Contributors

import inspect
from abc import ABCMeta, abstractmethod
Expand Down Expand Up @@ -564,7 +564,7 @@ def compare_units(check_pars: List[Quantity], good_pars: List[Quantity]) -> List
:param List[Quantity] good_pars: The second list of parameters, these are taken as having 'correct'
units.
:return: Only if the check pars pass the tests. We return the check pars list but with all elements
converted to EXACTLY the same units as good_pars, not just equivelant.
converted to EXACTLY the same units as good_pars, not just equivalent.
:rtype: List[Quantity]
"""
if len(check_pars) != len(good_pars):
Expand Down

0 comments on commit 590e994

Please sign in to comment.