You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with open(lockfile_name, "r", encoding="utf8") as file:
for line in file:
if hash_string in line:
count += 1
if count >= threshold:
print(
f"Success: Found '{hash_string}' more than {threshold} times in {lockfile_name}."
)
sys.exit(0)
# If the loop completes without early exit, it means the threshold was not reached
print(
f"Error: The string '{hash_string}' appears less than {threshold} times in {lockfile_name}, please make sure you are using an up to date poetry version."
)
sys.exit(1)
except FileNotFoundError:
print(f"Error: File {lockfile_name} does not exist.")