Skip to content

Commit

Permalink
Fix formatting of function objects file
Browse files Browse the repository at this point in the history
  • Loading branch information
sayerhs committed Jan 22, 2024
1 parent 822d978 commit d3b3e11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions caelus/post/funcobj/forces.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,10 @@ class LiftDrag(FunctionObject):
('runOnLastIterOnly', False),
('porosity', True),
('outputRegionData', False),
('writeFields', False)
('writeFields', False),
]

def __call__(self, time: str =None):
def __call__(self, time: str = None):
"""Load the liftDrag file and return as pandas DataFrame."""
dtime = str(time) if time else self.latest_time
dpath = self.root / dtime
Expand Down

0 comments on commit d3b3e11

Please sign in to comment.