-
Notifications
You must be signed in to change notification settings - Fork 682
Open
Labels
Triage 🩺This issue needs to be triaged by a maintainerThis issue needs to be triaged by a maintainer
Description
What kind of feature would you like to request?
Improved documentation or error message?
Please describe your wishes
scanpy/src/scanpy/readwrite.py
Lines 1159 to 1164 in c4cbb22
| if len(ext_from_file) > 2: | |
| logg.warning( | |
| f"Your filename has more than two extensions: {ext_from_file}.\n" | |
| f"Only considering the two last: {ext_from_file[-2:]}." | |
| ) | |
| ext_from_file = ext_from_file[-2:] |
As long as the extension can be parsed without issues, a warning does not seem justified.
Proposed change: remove the warning so as to execute silently upon successful parsing of the extension
Related: #2288
Metadata
Metadata
Assignees
Labels
Triage 🩺This issue needs to be triaged by a maintainerThis issue needs to be triaged by a maintainer