From 422264d8b8fa274a4d68c3b6dc295bf41083fd25 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 9735167c3843..f09669ada560 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. """