From f39f6e3e9387e7f5dea720ff951f0864a755a804 Mon Sep 17 00:00:00 2001 From: John Chilton Date: Tue, 30 Jul 2024 14:11:25 -0400 Subject: [PATCH] mypy fix for FeatureLocationIndexDataProvider. --- lib/galaxy/visualization/data_providers/genome.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/galaxy/visualization/data_providers/genome.py b/lib/galaxy/visualization/data_providers/genome.py index 9dd59e116684..dbdae6d771b9 100644 --- a/lib/galaxy/visualization/data_providers/genome.py +++ b/lib/galaxy/visualization/data_providers/genome.py @@ -98,7 +98,10 @@ def _chrom_naming_matches(chrom1, chrom2): ) -class FeatureLocationIndexDataProvider(BaseDataProvider): +# Was previously a BaseDataProvider but it doesn't have the same interface or use any of +# the parent methods. It is also only used explicitly, constructed by name, and access with +# get_data directly using a specified query. +class FeatureLocationIndexDataProvider: """ Reads/writes/queries feature location index (FLI) datasets. """