Skip to content

Commit

Permalink
[pre-commit.ci lite] apply automatic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci-lite[bot] authored May 14, 2024
1 parent 3752376 commit 68f6d83
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/adler/adler.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@


def runAdler(cli_args):

logger.info("Beginning Adler.")

if cli_args.ssObjectId_list:
Expand Down
1 change: 0 additions & 1 deletion src/adler/utilities/AdlerCLIArguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ def _validate_outpath(self):
raise ValueError("The output path for the command-line argument --outpath cannot be found.")

def _validate_ssObjectId_list(self):

self.ssObjectId_list = os.path.abspath(self.ssObjectId_list)

if not os.path.exists(self.ssObjectId_list):
Expand Down
1 change: 0 additions & 1 deletion src/adler/utilities/readin_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


def read_in_SSObjectID_file(readin_path):

with open(readin_path) as f:
ssoid_list = f.read().splitlines()

Expand Down
1 change: 0 additions & 1 deletion tests/adler/utilities/test_AdlerCLIArguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ def test_AdlerCLIArguments_badoutput():


def test_AdlerCLIArguments_badlist():

bad_list_arguments = args(
None,
"./fake_input/here.txt",
Expand Down
1 change: 0 additions & 1 deletion tests/adler/utilities/test_readin_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


def test_read_in_SSObjectID_file():

from adler.utilities.readin_utilities import read_in_SSObjectID_file

good_ssoids = read_in_SSObjectID_file(get_test_data_filepath("test_SSOIDs.txt"))
Expand Down

0 comments on commit 68f6d83

Please sign in to comment.