Skip to content

Commit 6d7c4d1

Browse files
committed
refactor: typings
1 parent df2f436 commit 6d7c4d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fortls/intrinsics.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ def __init__(
2929
self,
3030
name: str,
3131
type: int,
32-
doc_str: str = "",
32+
doc_str: str | None = None,
3333
args: str = "",
3434
parent=None,
3535
):
3636
self.name: str = name
3737
self.type: int = type
38-
self.doc_str: str = doc_str
38+
self.doc_str: str | None = doc_str
3939
self.args: str = args.replace(" ", "")
4040
self.parent = parent
4141
self.file_ast: FortranAST = intrinsic_ast

0 commit comments

Comments
 (0)