Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and matthewfeickert committed Mar 20, 2024
1 parent 01b37d0 commit c1d61a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pylhe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ class LHEInit(dict):
"numProcesses",
]

def __init__(self,*args,**kwargs):
super().__init__(*args,**kwargs)
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)

@classmethod
def fromstring(cls, string):
Expand All @@ -198,8 +198,8 @@ class LHEProcInfo(dict):

fieldnames = ["xSection", "error", "unitWeight", "procId"]

def __init__(self,*args,**kwargs):
super().__init__(*args,**kwargs)
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)

@classmethod
def fromstring(cls, string):
Expand Down

0 comments on commit c1d61a2

Please sign in to comment.