From 448c572026a4500a163bad2f7f3b5a9259c5ed40 Mon Sep 17 00:00:00 2001 From: inference Date: Wed, 25 Jun 2025 21:43:39 +0000 Subject: [PATCH] feat(lib): import library "argparse" --- duplicate_check.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/duplicate_check.py b/duplicate_check.py index 00ad609..67e9aa0 100644 --- a/duplicate_check.py +++ b/duplicate_check.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # Duplicate Check -# Version: 0.9.0 +# Version: 0.10.0 # Copyright 2025 Jake Winters # SPDX-License-Identifier: BSD-3-Clause @@ -9,6 +9,7 @@ import os import hashlib +import argparse def hash_file(file_path): @@ -16,4 +17,4 @@ def hash_file(file_path): with open(file_path, 'rb') as f: for byte_block in iter(lambda: f.read(65536), b''): sha256_hash.update(byte_block) - return sha256_hash.hexdigest() + return sha256_hash.hexdigest() \ No newline at end of file