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:
Hugo Osvaldo Barrera 2024-06-24 10:07:12 +02:00 committed by Newbyte
parent c4e7878832
commit d6d088b68b
No known key found for this signature in database
GPG key ID: 8A700086A9FE41FD
2 changed files with 2 additions and 2 deletions

View file

@ -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)