Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactoring #92

Merged
merged 1 commit into from
Jan 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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