Skip to content

Commit

Permalink
fix typo & import
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Dec 16, 2023
1 parent 1f7d490 commit 30384a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion petab_select/model_space.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""The `ModelSpace` class and related methods."""
import itertools
import logging
import warnings
from pathlib import Path
from tempfile import NamedTemporaryFile
from typing import Any, Iterable, List, Optional, TextIO, Union, get_args
Expand Down Expand Up @@ -252,7 +253,7 @@ def search_subspaces(only_one_subspace: bool = False):

def __len__(self):
"""Get the number of models in this space."""
subspace_coumts = [len(s) for s in self.model_subspaces]
subspace_counts = [len(s) for s in self.model_subspaces]
total_count = sum(subspace_counts)
return total_count

Expand Down

0 comments on commit 30384a2

Please sign in to comment.