diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-08-30 18:14:32 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-08-30 18:14:32 +0200 |
commit | 4bbf3c6ea08cdf468907c55c33efe060aee4c2c9 (patch) | |
tree | 4bb16b3d0ea169abc95c4c283896574ed7433f2c /utils | |
parent | 21f919b14a9aeaa08aecbcdd41a530198315aad1 (diff) | |
download | gemato-4bbf3c6ea08cdf468907c55c33efe060aee4c2c9.tar.gz |
Remove obsolete 'object' inheritance
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/fuzzy-hash-tester.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/fuzzy-hash-tester.py b/utils/fuzzy-hash-tester.py index c3234cb..1988852 100755 --- a/utils/fuzzy-hash-tester.py +++ b/utils/fuzzy-hash-tester.py @@ -12,7 +12,7 @@ import sys import pyblake2 -class ExternalToolHash(object): +class ExternalToolHash: def __init__(self, argv): self.subp = subprocess.Popen(argv, stdin=subprocess.PIPE, |