Skip to content

Commit

Permalink
update description
Browse files Browse the repository at this point in the history
  • Loading branch information
xunto committed Dec 29, 2016
1 parent d2ce071 commit 190af43
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion console.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,18 @@
HTML.default_html_template.format(data=HTML.convert(table), style=HTML.default_style_template)
}

description = '''Description:
Anna program builds analytical table for logical expression.
Dedication: This is for my caring girlfriend Anna who programmed a brackets restoration part.
site: https://github.com/xunto/anna
email: hunterdelyx1@gmail.com
(c) 2017 Orlov Valentin S.'''



def main():
parser = argparse.ArgumentParser(description='Builds analytical table for logical expression.')
parser = argparse.ArgumentParser(description=description, formatter_class=argparse.RawDescriptionHelpFormatter)

parser.add_argument("expression", metavar="expression", type=str,
help="logical expression, without spaces, actions: \"!, |, &, ->, <->\"")
Expand Down

0 comments on commit 190af43

Please sign in to comment.