Skip to content

Commit

Permalink
fixed errors in the previous commit
Browse files Browse the repository at this point in the history
fixing pylint
  • Loading branch information
speedyleion committed Oct 7, 2023
1 parent 8e7a3d9 commit d71281e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sphinx_c_autodoc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ def parse_name(self) -> bool:

# The implementation of self.resolve_name() always returns back a str,
# but typing wise it says optional to be nsync with the Sphinx definition.
self.modname, self.objpath = self.resolve_name(fullname, parents, path, base) # type: ignore
self.modname, self.objpath = \
self.resolve_name(fullname, parents, path, base) # type: ignore

self.fullname = self.modname
return True
Expand Down

0 comments on commit d71281e

Please sign in to comment.