From 0e5054b3176973d443f3ecc41555e0e9fb9c47e8 Mon Sep 17 00:00:00 2001 From: sfmig <33267254+sfmig@users.noreply.github.com> Date: Mon, 2 Oct 2023 17:59:46 +0100 Subject: [PATCH] fix typo in Pathlike --- brainglobe_workflows/cellfinder/cellfinder_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brainglobe_workflows/cellfinder/cellfinder_main.py b/brainglobe_workflows/cellfinder/cellfinder_main.py index 27406a5e..275be07d 100644 --- a/brainglobe_workflows/cellfinder/cellfinder_main.py +++ b/brainglobe_workflows/cellfinder/cellfinder_main.py @@ -11,7 +11,7 @@ from cellfinder_core.tools.IO import read_with_dask from cellfinder_core.train.train_yml import depth_type -Pathlike = Union[str, os.PathLike[str]] # Union[str, bytes, os.PathLike, Path] +Pathlike = Union[str, os.PathLike] # Union[str, bytes, os.PathLike, Path] # Default config DATA_URL = "https://gin.g-node.org/BrainGlobe/test-data/raw/master/cellfinder/cellfinder-test-data.zip"