aboutsummaryrefslogtreecommitdiff
path: root/src/config.py
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-01-31 02:38:49 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-01-31 02:38:49 +0100
commit4a4f6b5b01bd6d23c141d51dd9399c36d12d29d9 (patch)
tree6cc08bd49decda6f91c8464b95cafc4945214b50 /src/config.py
parent19c93b393853d5ba052904914356147e27813ad0 (diff)
downloadminishell_test-4a4f6b5b01bd6d23c141d51dd9399c36d12d29d9.tar.gz
minishell_test-4a4f6b5b01bd6d23c141d51dd9399c36d12d29d9.tar.bz2
minishell_test-4a4f6b5b01bd6d23c141d51dd9399c36d12d29d9.zip
Fixing some type error, Added travis ci
Diffstat (limited to 'src/config.py')
-rw-r--r--src/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.py b/src/config.py
index 03893d1..95600c6 100644
--- a/src/config.py
+++ b/src/config.py
@@ -6,7 +6,7 @@
# By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/07/15 18:24:19 by charles #+# #+# #
-# Updated: 2021/01/11 22:19:59 by charles ### ########.fr #
+# Updated: 2021/01/31 01:59:00 by charles ### ########.fr #
# #
# ############################################################################ #
@@ -35,7 +35,7 @@ MINISHELL_MAKE = True
# has to support the -c option (sh, bash and zsh support it)
REFERENCE_PATH = "/bin/bash"
# can be changed with `export MINISHELL_TEST_ARGS=--poxix,--otherarg`
-REFERENCE_ARGS = [] # ["--posix"]
+REFERENCE_ARGS: list[str] = [] # ["--posix"]
# pager to use with --pager option
# can be changed with `export MINISHELL_TEST_PAGER=yourpager`