all: remove redundant parentheses in if statements

This commit is contained in:
Alexey 2020-03-29 11:08:42 +03:00 committed by GitHub
parent e09447d011
commit a333ac1888
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 16 additions and 18 deletions

View file

@ -148,7 +148,7 @@ ${flag.SPACE}to script it/run it in a restrictive vps/docker.
context.show_help = fp.bool('help', `h`, false, 'Show this help screen.')
context.verbose = fp.bool('verbose', `v`, false, 'Be more verbose.')
if (context.show_help) {
if context.show_help {
println(fp.usage())
exit(0)
}