Skip to content

Commit 7930414

Browse files
committed
ruff
1 parent bd398ec commit 7930414

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

modflow_devtools/programs/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,8 @@
2121
"""
2222

2323
import hashlib
24-
import platform as pl
25-
import shutil
26-
from collections.abc import Callable
2724
import os
25+
import shutil
2826
from dataclasses import dataclass, field
2927
from datetime import datetime
3028
from os import PathLike
@@ -614,7 +612,6 @@ def _compute_file_hash(file_path: Path, algorithm: str = "sha256") -> str:
614612
str
615613
Hex digest of file hash
616614
"""
617-
import hashlib
618615

619616
hash_obj = hashlib.new(algorithm)
620617
with file_path.open("rb") as f:

0 commit comments

Comments
 (0)