Skip to content

Commit

Permalink
Remove unnecessary parens
Browse files Browse the repository at this point in the history
  • Loading branch information
eschan145 committed Jan 7, 2025
1 parent 0081d7d commit a787a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def doc(file_path, lib=None, markdown=False):
name = function[1]
body = function[2]

if (markdown):
if markdown:
print("Parsing function", name)

docstring_match = re.search(r"/\*(.*?)\*/", body, re.DOTALL)
Expand Down

0 comments on commit a787a98

Please sign in to comment.