Skip to content

Commit 182d863

Browse files
fix: removed unecessary warning when a file name comprises multiple dots (#3924)
1 parent e8874b4 commit 182d863

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scanpy/readwrite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1157,7 +1157,7 @@ def is_valid_filename(
11571157
raise ValueError(msg)
11581158
return ext if return_ext else True
11591159
if len(ext_from_file) > 2:
1160-
logg.warning(
1160+
logg.debug(
11611161
f"Your filename has more than two extensions: {ext_from_file}.\n"
11621162
f"Only considering the two last: {ext_from_file[-2:]}."
11631163
)

0 commit comments

Comments
 (0)