Skip to content

Commit

Permalink
small typing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nfsaavedra committed May 16, 2024
1 parent dda3eb1 commit 514a51a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion puppetparser/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def __init__(
operator: str,
):
super().__init__(line, col, end_line, end_col)
self.arguments: Tuple[CodeElement, ...] = arguments
self.arguments: List[CodeElement] = list(arguments)
self.operator: str = operator


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "puppetparser"
version = "0.2.6"
version = "0.2.7"
description = "A parser from Puppet to an object model"
authors = ["Nuno Saavedra <nuno.saavedra@tecnico.ulisboa.pt>"]
license = "GPL-3.0"
Expand Down

0 comments on commit 514a51a

Please sign in to comment.