We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df2f436 commit 6d7c4d1Copy full SHA for 6d7c4d1
fortls/intrinsics.py
@@ -29,13 +29,13 @@ def __init__(
29
self,
30
name: str,
31
type: int,
32
- doc_str: str = "",
+ doc_str: str | None = None,
33
args: str = "",
34
parent=None,
35
):
36
self.name: str = name
37
self.type: int = type
38
- self.doc_str: str = doc_str
+ self.doc_str: str | None = doc_str
39
self.args: str = args.replace(" ", "")
40
self.parent = parent
41
self.file_ast: FortranAST = intrinsic_ast
0 commit comments