Skip to content

Commit

Permalink
Remove workaround for python/importlib_resources#137.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jan 4, 2025
1 parent a2052d6 commit 1ea4293
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest_enabler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def read_plugins_stream(
@apply(none_as_empty)
@suppress(Exception)
def read_plugins(path: Traversable) -> dict[str, dict[str, str]]:
with path.open(encoding='utf-8') as stream: # type: ignore[no-untyped-call, unused-ignore] # python/importlib_resources#137
with path.open(encoding='utf-8') as stream:
return read_plugins_stream(stream)


Expand Down

0 comments on commit 1ea4293

Please sign in to comment.