Skip to content

Commit

Permalink
change method name
Browse files Browse the repository at this point in the history
  • Loading branch information
jodyphelan committed Nov 18, 2024
1 parent 663fd15 commit f557627
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tbprofiler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ProfilePlugin:
"""

@abstractmethod
def pre_check(self,args):
def pre_process(self,args):
"""Generic pre-check method"""
pass

Expand All @@ -27,6 +27,6 @@ def run(self):
pass

@abstractmethod
def post_check(self,args):
def post_process(self,args):
"""Generic post-check method"""
pass

0 comments on commit f557627

Please sign in to comment.