From 604c0ed33baa7d8542ad92dfbcc4f4538ff32a5e Mon Sep 17 00:00:00 2001 From: pyoor Date: Thu, 2 Jun 2022 16:16:06 -0400 Subject: [PATCH] docs: fix indent --- bugmon/bug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bugmon/bug.py b/bugmon/bug.py index a1d68dd..d1d1a25 100644 --- a/bugmon/bug.py +++ b/bugmon/bug.py @@ -372,7 +372,7 @@ def get_comments(self) -> List[Comment]: def add_comment(self, comment: Comment) -> None: """Add a new comment when a bugsy instance is present - :param comment: comment + :param comment: comment :raise TypeError: Raises if bug does not have a bugsy instance""" if self._bugsy is None: raise TypeError("Method not supported when using a cached bug")