We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e0c854 commit 870e3baCopy full SHA for 870e3ba
1 file changed
tests/unit/test_io.py
@@ -16,6 +16,6 @@ def test_normalize_storage_options_is_not_mappingproxy() -> None:
16
ingestion passes these options into ``ProcessPoolExecutor`` initargs, so a mappingproxy breaks
17
spawned workers with ``TypeError: cannot pickle 'mappingproxy' object``.
18
"""
19
- storage_options = _normalize_storage_options(UPath("s3://bucket/key", key="access", secret="secret"))
+ storage_options = _normalize_storage_options(UPath("s3://bucket/key", key="access", secret="secret")) # noqa: S106
20
21
assert not isinstance(storage_options, MappingProxyType)
0 commit comments