From a19f1e561b33c361cd2decff9bfe289e9f5ca531 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Fri, 23 Apr 2021 13:38:14 -0500 Subject: [PATCH] Qualify pytools.tag.Tag references in tagged and without_tags methods --- pytools/tag.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pytools/tag.py b/pytools/tag.py index 42d9e50..47b00f7 100644 --- a/pytools/tag.py +++ b/pytools/tag.py @@ -273,7 +273,7 @@ class Taggable: and other tags of this type are already present, an error is raised Assumes `self.copy(tags=)` is implemented. - :arg tags: An instance of :class:`Tag` or + :arg tags: An instance of :class:`~pytools.tag.Tag` or an iterable with instances therein. """ return self.copy( @@ -285,8 +285,8 @@ class Taggable: Return a copy of *self* without the specified tags. `self.copy(tags=)` is implemented. - :arg tags: An instance of :class:`Tag` or an iterable with instances - therein. + :arg tags: An instance of :class:`~pytools.tag.Tag` or an iterable with + instances therein. :arg verify_existence: If set to `True`, this method raises an exception if not all tags specified for removal are present in the original set of tags. Default `True`. -- GitLab