Skip to content

Commit fba1396

Browse files
committed
chore: housekeeping
1 parent 689e2be commit fba1396

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN set -Eeuxo pipefail && \
3030
echo ${AUX_GROUP_IDS} | xargs -n1 echo | xargs -I% addgroup --gid % group% && \
3131
echo ${AUX_GROUP_IDS} | xargs -n1 echo | xargs -I% usermod --append --groups group% user
3232

33-
# prepare argunparse for testing
33+
# install dependencies
3434

3535
WORKDIR /home/user/argunparse
3636

@@ -39,6 +39,8 @@ COPY --chown=${USER_ID}:${GROUP_ID} requirements*.txt ./
3939
RUN set -Eeuxo pipefail && \
4040
pip3 install --no-cache-dir -r requirements_ci.txt
4141

42+
# prepare argunparse for testing
43+
4244
USER user
4345

4446
VOLUME ["/home/user/argunparse"]

argunparse/argument_unparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def option_should_be_skipped(value: t.Any) -> bool:
1919
class ArgumentUnparser:
2020
"""For performing reverse operation to what argparse.ArgumentParser does."""
2121

22-
# pylint: disable=too-many-arguments
22+
# pylint: disable = too-many-arguments
2323
def __init__(
2424
self, short_opt: str = '-', long_opt: str = '--', opt_value: str = '=',
2525
begin_delim: str = '"', end_delim: str = '"') -> None:

0 commit comments

Comments
 (0)