Skip to content

Commit

Permalink
(PR 3.0.0) Comment 5 of @sonofmun review : Fix Citation.is_set docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
PonteIneptique committed Oct 15, 2019
1 parent 71c2484 commit 7165528
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MyCapytain/common/reference/_capitains_cts.py
Expand Up @@ -871,10 +871,10 @@ def fill(self, passage=None, xpath=None):
self.refsDecl
)

def is_set(self):
""" Check if the citation has not been set
def is_set(self) -> bool:
""" Check if the citation has been set
:return: True if nothing was setup
:return: True if set up, False if not
:rtype: bool
"""
return self.refsDecl is not None
Expand Down

0 comments on commit 7165528

Please sign in to comment.