diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-12-18 21:28:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-18 21:28:49 -0500 |
commit | 9b52920173735ac609664c6a3a3021d24a95a092 (patch) | |
tree | ffc7dc7dc01cddc6973bd9cf9e4cb649258365d1 /Lib/importlib/abc.py | |
parent | fe68486197cb26a69ecce9353271d91adf885cb5 (diff) | |
download | cpython-git-9b52920173735ac609664c6a3a3021d24a95a092.tar.gz |
bpo-46125: Refactor tests to test traversable API directly. Includes changes from importlib_resources 5.4.0. (GH-30189)
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 |