Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

Commit

Permalink
exporting parse_module in archives
Browse files Browse the repository at this point in the history
  • Loading branch information
jpetrucciani committed Sep 13, 2019
1 parent a579761 commit 3ce79ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion archives/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
@author jacobi petrucciani
@desc the archives module
"""
from archives.archives import archives # noqa
from archives.archives import archives, parse_module # noqa
1 change: 1 addition & 0 deletions archives/models/python.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ def __init__(self, doc_string: ast3.Expr, doc_type: Type) -> None:
@arg doc_string: the expression used to represent a docstring
@arg doc_type: the enum type of doc string this is used for
"""
self._doc = doc_string
self.value = doc_string.value.s.strip() # type: ignore
desc = Tags.DESC.regex.search(self.value)
ret = Tags.RETURN.regex.search(self.value)
Expand Down

0 comments on commit 3ce79ec

Please sign in to comment.