mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
Fix typo
This commit is contained in:
parent
dc816c9f8d
commit
84c56b3624
1 changed files with 2 additions and 8 deletions
|
@ -433,16 +433,10 @@ class MarkupText(LabelledString):
|
|||
return result
|
||||
|
||||
def get_internal_specified_spans(self) -> list[Span]:
|
||||
return [
|
||||
markup_span
|
||||
for markup_span, _ in self.local_dicts_from_markup
|
||||
]
|
||||
return [span for span, _ in self.local_dicts_from_markup]
|
||||
|
||||
def get_external_specified_spans(self) -> list[Span]:
|
||||
return [
|
||||
markup_span
|
||||
for markup_span, _, _ in self.local_dicts_from_config
|
||||
]
|
||||
return [span for span, _ in self.local_dicts_from_config]
|
||||
|
||||
def get_label_span_list(self) -> list[Span]:
|
||||
breakup_indices = remove_list_redundancies(list(it.chain(*it.chain(
|
||||
|
|
Loading…
Add table
Reference in a new issue