From 7c772fe4fc22fffb0aec57ab909714fe2018ccc0 Mon Sep 17 00:00:00 2001 From: tristanlatr <19967168+tristanlatr@users.noreply.github.com> Date: Mon, 9 Dec 2024 14:08:56 -0500 Subject: [PATCH] Fix typo --- pydoctor/model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pydoctor/model.py b/pydoctor/model.py index eeac34b10..c59e1ff6f 100644 --- a/pydoctor/model.py +++ b/pydoctor/model.py @@ -685,7 +685,7 @@ def compute_mros(self) -> None: if cls in self.computed_mros: continue # All strings bases are already pre-computed to the empty list, - # so the cls varible must be a Class at this point + # so the cls variable must be a Class at this point assert isinstance(cls, Class) self.computed_mros[cls] = cls._mro = self._compute_mro(cls)