From 2021181b073c0ebeafa87d43f7473bb29a6e5c13 Mon Sep 17 00:00:00 2001 From: Vojtech Trefny Date: Mon, 23 Sep 2024 15:29:52 +0200 Subject: [PATCH] makeupdates: Ignore that getopt is deprecated getopt is "soft deprecated" starting with Python 3.13. Pylint warns about this but getopt is not going to be removed, it's just not being actively developed any more. We should switch to argopt in the future, but for now we can just ignore the warning. --- scripts/makeupdates | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/makeupdates b/scripts/makeupdates index 1b9fb7eab..41ea6a7c1 100755 --- a/scripts/makeupdates +++ b/scripts/makeupdates @@ -20,7 +20,7 @@ # # Author: David Cantrell -import getopt +import getopt # pylint: disable=deprecated-module import os import shutil import subprocess