Skip to content

Commit

Permalink
Make the flake8 lint pass
Browse files Browse the repository at this point in the history
  • Loading branch information
creed130 committed Oct 23, 2024
1 parent a2780e7 commit 3c60d59
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions pkmodel/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ class Model:
"""
def __init__(self,
name,
Q_p1 = 1,
V_c = 1,
V_p1 = 1,
CL = 1,
X = 1):
Q_p1=1,
V_c=1,
V_p1=1,
CL=1,
X=1):
self.name = name
self.Q_p1 = Q_p1
self.V_c = V_c
Expand All @@ -32,4 +32,3 @@ def __init__(self,

def __str__(self):
return "model named " + self.name

0 comments on commit 3c60d59

Please sign in to comment.