From 4b0d635055d5770e67125439e675e5a8765aa5c3 Mon Sep 17 00:00:00 2001 From: Phil Owen <19691521+PhillipsOwen@users.noreply.github.com> Date: Thu, 15 Aug 2024 10:51:29 -0400 Subject: [PATCH] fixing pylint issues --- src/staging/staging.py | 1 - src/tests/test_staging.py | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/staging/staging.py b/src/staging/staging.py index 9a90916..a2c8e2d 100644 --- a/src/staging/staging.py +++ b/src/staging/staging.py @@ -10,7 +10,6 @@ import shutil import sys import glob -import zipfile from src.common.logger import LoggingUtil from src.common.pg_impl import PGImplementation diff --git a/src/tests/test_staging.py b/src/tests/test_staging.py index 5bcaa5f..b7b207b 100644 --- a/src/tests/test_staging.py +++ b/src/tests/test_staging.py @@ -8,8 +8,6 @@ Author: Phil Owen, RENCI.org """ import os -import pytest - from src.staging.staging import Staging from src.common.staging_enums import StagingType, WorkflowTypeName, ReturnCodes