Skip to content

Commit

Permalink
refactor: add docstring to get_args
Browse files Browse the repository at this point in the history
  • Loading branch information
mecaneer23 committed Jan 25, 2024
1 parent b235c9c commit 3e4e33c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/get_args.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pylint: disable=missing-docstring
"""Command line argument parser for Ndo"""

from argparse import ArgumentParser, Namespace, RawDescriptionHelpFormatter
from pathlib import Path
Expand All @@ -10,7 +10,7 @@
_DEFAULT_TKINTER_GUI = False
except ImportError:

def wrapper(_: Any) -> str:
def wrapper(_: Any) -> str: # pylint: disable=missing-function-docstring
return _CHECKBOX_OPTIONS[1]

_DEFAULT_TKINTER_GUI = True # pyright: ignore[reportConstantRedefinition]
Expand Down

0 comments on commit 3e4e33c

Please sign in to comment.