Skip to content

Commit

Permalink
bears: Rename run_bear() to run()
Browse files Browse the repository at this point in the history
coala's got this as a usability fix :).
  • Loading branch information
sils committed Feb 21, 2015
1 parent 44fbe09 commit c16056a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions bears/CommunicationBear.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@


class CommunicationBear(LocalBear):
def run_bear(self,
filename,
file,
user_input: str):
def run(self,
filename,
file,
user_input: str):
"""
Communicates with the user.
Expand Down
6 changes: 3 additions & 3 deletions bears/HelloWorldBear.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


class HelloWorldBear(LocalBear):
def run_bear(self,
filename,
file):
def run(self,
filename,
file):
self.debug_msg("Hello World! Checking file", filename, ".")

0 comments on commit c16056a

Please sign in to comment.