From 738eb469f86cb2fc866e8cbcbed6c022d49b761e Mon Sep 17 00:00:00 2001 From: Luis Antonio Obis Aparicio <35803280+lobis@users.noreply.github.com> Date: Tue, 14 Nov 2023 16:23:39 -0600 Subject: [PATCH] feat: add fsspec as required dependency (#1021) * fsspec requirements * simplify fsspec import * use loop property * correctly create schemes list --- src/uproot/_util.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/uproot/_util.py b/src/uproot/_util.py index 9769ad055..31a82f571 100644 --- a/src/uproot/_util.py +++ b/src/uproot/_util.py @@ -293,7 +293,6 @@ def regularize_path(path): _remote_schemes = ["root", "s3", "http", "https"] _schemes = list({*_remote_schemes, *fsspec.available_protocols()}) - def file_object_path_split(urlpath: str) -> tuple[str, str | None]: """ Split a path with a colon into a file path and an object-in-file path.