forked from Mirror/pmbootstrap
Remove needless lint exceptions (MR 2334)
- Ruff won't complain about long lines which end in a long URL. - The typing exception is no longer required.
This commit is contained in:
parent
c4e7878832
commit
d6d088b68b
2 changed files with 2 additions and 2 deletions
|
@ -529,7 +529,7 @@ kconfig_options_netboot = {
|
|||
}
|
||||
|
||||
# Necessary wireguard & wg-quick kernel config options
|
||||
# From https://gitweb.gentoo.org/repo/gentoo.git/tree/net-vpn/wireguard-tools/wireguard-tools-1.0.20210914.ebuild?id=76aaa1eeb6f001baaa68e6946f917ebb091bbd9d # noqa
|
||||
# From https://gitweb.gentoo.org/repo/gentoo.git/tree/net-vpn/wireguard-tools/wireguard-tools-1.0.20210914.ebuild?id=76aaa1eeb6f001baaa68e6946f917ebb091bbd9d
|
||||
kconfig_options_wireguard = {
|
||||
">=5.6_rc1": { # all versions
|
||||
"all": { # all arches
|
||||
|
|
|
@ -1285,7 +1285,7 @@ def get_parser():
|
|||
|
||||
def arguments():
|
||||
# Parse and extend arguments (also backup unmodified result from argparse)
|
||||
args: PmbArgs = get_parser().parse_args() # type: ignore
|
||||
args: PmbArgs = get_parser().parse_args()
|
||||
|
||||
# setattr(args, "from_argparse", copy.deepcopy(args))
|
||||
# setattr(args.from_argparse, "from_argparse", args.from_argparse)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue