Skip to content

Commit

Permalink
remove **kwargs: dict, which is incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
njzjz authored May 17, 2024
1 parent 8b0700a commit 24b93d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dpdata/plugins/amber.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class SQMDriver(Driver):
-15.41111246
"""

def __init__(self, sqm_exec: str = "sqm", **kwargs: dict) -> None:
def __init__(self, sqm_exec: str = "sqm", **kwargs) -> None:
self.sqm_exec = sqm_exec
self.kwargs = kwargs

Expand Down
2 changes: 1 addition & 1 deletion dpdata/plugins/gaussian.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class GaussianDriver(Driver):
-1102.714590995794
"""

def __init__(self, gaussian_exec: str = "g16", **kwargs: dict) -> None:
def __init__(self, gaussian_exec: str = "g16", **kwargs) -> None:
self.gaussian_exec = gaussian_exec
self.kwargs = kwargs

Expand Down

0 comments on commit 24b93d5

Please sign in to comment.