Skip to content

Commit

Permalink
Merge pull request #92 from srz-zumix/feature/refactoring
Browse files Browse the repository at this point in the history
refactoring
  • Loading branch information
srz-zumix authored Jan 22, 2022
2 parents aea2fd6 + 08aef2e commit 1b01303
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wandbox/__bash__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class InnerCLI(CLI):

def __init__(self):
self.output = None
super(BashCLI.InnerCLI, self).__init__('Bash', 'bash', False, False)
super(BashCLI.InnerCLI, self).__init__('Bash script', 'bash', False, False)

def get_runner(self, args, options):
return BashRunner(args.language, args.compiler, args.save, args.encoding, args.retry, args.retry_wait)
Expand Down
2 changes: 1 addition & 1 deletion wandbox/__coffee__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def import_from(self, path, module_name_):
class CoffeeCLI(CLI):

def __init__(self, compiler=None):
super(CoffeeCLI, self).__init__('CoffeeScript', compiler, True, False)
super(CoffeeCLI, self).__init__('CoffeeScript', compiler, has_compiler_option_raw=False)

def cxx_setup(self, lang, compiler):
self.parser.add_argument(
Expand Down

0 comments on commit 1b01303

Please sign in to comment.