Skip to content

Commit

Permalink
🐛 Fix conflicting class name
Browse files Browse the repository at this point in the history
  • Loading branch information
shnizzedy committed Jul 18, 2024
1 parent f5dd824 commit 6c96667
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CPAC/pipeline/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
from itertools import chain, permutations
import re
from subprocess import CalledProcessError
from typing import Optional as TypeOptional

import numpy as np
from pathvalidate import sanitize_filename
Expand Down Expand Up @@ -310,7 +311,7 @@ def str_to_bool1_1(x: Any) -> bool: # pylint: disable=invalid-name
)


def name_motion_filter(mfilter: dict, mfilters: Optional[list] = None) -> str:
def name_motion_filter(mfilter: dict, mfilters: TypeOptional[list] = None) -> str:
"""Given a motion filter, create a short string for the filename.
Examples
Expand Down

0 comments on commit 6c96667

Please sign in to comment.