From 1a4266965c056f559cf058bcd71f5c33288d5da3 Mon Sep 17 00:00:00 2001 From: KatKatKateryna Date: Sun, 29 Oct 2023 21:36:46 +0000 Subject: [PATCH] fix file path --- plugin_utils/patch_requirements.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin_utils/patch_requirements.py b/plugin_utils/patch_requirements.py index e2b1e118..0c650747 100644 --- a/plugin_utils/patch_requirements.py +++ b/plugin_utils/patch_requirements.py @@ -1,6 +1,6 @@ def main(): """Removes Python version and OS from Requirements.txt""" - req_file = "requirements.txt" + req_file = "plugin_utils/requirements.txt" with open(req_file, "r") as file: lines = file.readlines()