Skip to content

Commit

Permalink
mypy fix for FeatureLocationIndexDataProvider.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Jul 30, 2024
1 parent 2e661fb commit 422264d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/galaxy/visualization/data_providers/genome.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand Down

0 comments on commit 422264d

Please sign in to comment.