Skip to content

Commit

Permalink
makeupdates: Ignore that getopt is deprecated
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
vojtechtrefny committed Sep 23, 2024
1 parent 04a1fe5 commit 2021181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/makeupdates
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#
# Author: David Cantrell <[email protected]>

import getopt
import getopt # pylint: disable=deprecated-module
import os
import shutil
import subprocess
Expand Down

0 comments on commit 2021181

Please sign in to comment.