aboutsummaryrefslogtreecommitdiff
path: root/minishell_test/args.py
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-02-05 18:02:45 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-02-05 18:02:45 +0100
commitb496ff9bb11949a4739ba44c75f2f5504a094fdb (patch)
tree0d974a390a3787721b54dfde9278c246c698bed4 /minishell_test/args.py
parentb164430fb1fa82c705077d46cdb685de5faf6a19 (diff)
downloadminishell_test-b496ff9bb11949a4739ba44c75f2f5504a094fdb.tar.gz
minishell_test-b496ff9bb11949a4739ba44c75f2f5504a094fdb.tar.bz2
minishell_test-b496ff9bb11949a4739ba44c75f2f5504a094fdb.zip
Removing annoying flake8 plugins
Diffstat (limited to 'minishell_test/args.py')
-rw-r--r--minishell_test/args.py19
1 files changed, 6 insertions, 13 deletions
diff --git a/minishell_test/args.py b/minishell_test/args.py
index b7fcca6..fb12841 100644
--- a/minishell_test/args.py
+++ b/minishell_test/args.py
@@ -6,7 +6,7 @@
# By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/07/15 18:24:32 by charles #+# #+# #
-# Updated: 2021/01/11 22:20:16 by charles ### ########.fr #
+# Updated: 2021/02/05 17:14:41 by charles ### ########.fr #
# #
# ############################################################################ #
@@ -18,19 +18,12 @@ def parse_args():
"""Parse command line arguments"""
parser = argparse.ArgumentParser(
- description=textwrap.dedent(r"""
- ___ ____ _ _ _ _ _ _
- | \/ (_) (_) | | | | | | | | |
- | . . |_ _ __ _ ___| |__ ___| | | | |_ ___ ___| |_
- | |\/| | | '_ \| / __| '_ \ / _ \ | | | __/ _ \/ __| __|
- | | | | | | | | \__ \ | | | __/ | | | || __/\__ \ |_
- \_| |_/_|_| |_|_|___/_| |_|\___|_|_| \__\___||___/\__|
- """),
+ description="Test for the minishell project of school 42.",
formatter_class=argparse.RawTextHelpFormatter,
- epilog=textwrap.dedent("""\
- Signal handling is not tested
- There is a commented glob suite in src/suites/preprocess.py.
- Good luck handling `*'.*'`.
+ epilog=textwrap.dedent("""
+ Made by cacharle
+ https://github.com/cacharle
+ https://cacharle.xyz
""")
)
parser.add_argument(