diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-12-18 18:28:30 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-12-18 18:29:13 -0500 |
commit | 42571d3aadd0a016f9133db99a2cf467267e847b (patch) | |
tree | ffc7dc7dc01cddc6973bd9cf9e4cb649258365d1 /Lib/importlib/abc.py | |
parent | fe68486197cb26a69ecce9353271d91adf885cb5 (diff) | |
download | cpython-git-bpo-46125/importlib-resources-test-traversable.tar.gz |
bpo-46125: Refactor tests to test traversable API directly. Includes changes from importlib_resources 5.4.0.bpo-46125/importlib-resources-test-traversable
Diffstat (limited to 'Lib/importlib/abc.py')
-rw-r--r-- | Lib/importlib/abc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/abc.py b/Lib/importlib/abc.py index 1d6843b2dd..f10441608a 100644 --- a/Lib/importlib/abc.py +++ b/Lib/importlib/abc.py @@ -381,7 +381,7 @@ class Traversable(Protocol): @abc.abstractmethod def is_dir(self) -> bool: """ - Return True if self is a dir + Return True if self is a directory """ @abc.abstractmethod |