From 5adfa286cb4acefa5862eaf85f69805f282d48ff Mon Sep 17 00:00:00 2001 From: sneakers-the-rat Date: Mon, 20 Nov 2023 16:05:21 -0800 Subject: [PATCH] fix doctests using correct tags adn quotes --- nwb_linkml/src/nwb_linkml/providers/git.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nwb_linkml/src/nwb_linkml/providers/git.py b/nwb_linkml/src/nwb_linkml/providers/git.py index f7022b1..658c99e 100644 --- a/nwb_linkml/src/nwb_linkml/providers/git.py +++ b/nwb_linkml/src/nwb_linkml/providers/git.py @@ -165,11 +165,11 @@ class GitRepo: >>> # Check out a tag specifically >>> repo.tag = "2.6.0" >>> repo.tag - "2.6.0" + '2.6.0' >>> # Now check out a commit some number after the tag. - >>> repo.commit = "gec0a879" + >>> repo.commit = "8abafcd" >>> repo.tag - "2.6.0-5-gec0a879" + '2.5.0-4-g8abafcd' """ res = self._git_call('describe', '--tags')