Skip to content

Commit

Permalink
PythonBlack changed
Browse files Browse the repository at this point in the history
  • Loading branch information
ypriverol committed Feb 28, 2024
1 parent ab4866c commit cebeb4d
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions sdrf_pipelines/sdrf/sdrf.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,3 @@ def validate(self, template: str):
errors = mass_spectrometry_schema.validate(self)

return errors

def map(self, func: PythonFuncType, na_action: str | None = None, **kwargs) -> DataFrame:
"""
Apply a function to the DataFrame.
:param func: The function to apply to the DataFrame.
:param na_action: If 'ignore', propagate NA values, without passing them to func.
:param kwargs: Additional keyword arguments to pass as keywords arguments to func.
:return: DataFrame
"""
return super().map(func, na_action=na_action, **kwargs)

0 comments on commit cebeb4d

Please sign in to comment.