Skip to content

Commit

Permalink
use Dict
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi-Gau committed Dec 15, 2023
1 parent 179ae8f commit 5e4437e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions giga_connectome/denoise.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import json
from pathlib import Path
from typing import Any, Callable, List, TypedDict, Union
from typing import Any, Callable, Dict, List, TypedDict, Union

import numpy as np
import pandas as pd
Expand Down Expand Up @@ -38,7 +38,7 @@
{
"name": str,
"function": Callable[..., Any],
"parameters": dict[str, Union[str, List[str]]],
"parameters": Dict[str, Union[str, List[str]]],
},
)

Expand Down

0 comments on commit 5e4437e

Please sign in to comment.