From 4094b099e98dded3f591d304b29e48dd691e0a0b Mon Sep 17 00:00:00 2001 From: Ivo Branco Date: Mon, 13 Jan 2025 14:22:04 +0000 Subject: [PATCH] fix: lint fccn/nau-course-certificate#5 --- tutorprint_course_certificates/plugin.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tutorprint_course_certificates/plugin.py b/tutorprint_course_certificates/plugin.py index 23c07d6..827a4e1 100644 --- a/tutorprint_course_certificates/plugin.py +++ b/tutorprint_course_certificates/plugin.py @@ -272,6 +272,4 @@ def _copy_file_p12() -> None: # create folder of p12_path on env os.makedirs(os.path.dirname(dest_fpath), exist_ok=True) # copy file p12 to env - shutil.copyfile( - str(p12_path), dest_fpath - ) + shutil.copyfile(str(p12_path), dest_fpath)