Skip to content

Commit 08aa334

Browse files
Major lint commit for newest black
1 parent 2d33523 commit 08aa334

27 files changed

+27
-27
lines changed

init_interactive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Create dummy PipelineManager and NGSTk instance for interactive session. """
1+
"""Create dummy PipelineManager and NGSTk instance for interactive session."""
22

33
import os
44

pypiper/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Pypiper constants. """
1+
"""Pypiper constants."""
22

33
CHECKPOINT_EXTENSION = ".checkpoint"
44
DEFAULT_SAMPLE_NAME = "DEFAULT_SAMPLE_NAME"

pypiper/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Custom pypiper exceptions """
1+
"""Custom pypiper exceptions"""
22

33
__author__ = "Vince Reuter"
44
__email__ = "vreuter@virginia.edu"

pypiper/flags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Status flags """
1+
"""Status flags"""
22

33
# TODO: ultimately, these should migrate to pep.
44
RUN_FLAG = "running"

pypiper/folder_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Context manager for temporarily changing folder. """
1+
"""Context manager for temporarily changing folder."""
22

33
import os
44

pypiper/ngstk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Broadly applicable NGS processing/analysis functionality """
1+
"""Broadly applicable NGS processing/analysis functionality"""
22

33
import errno
44
import os

pypiper/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Pipeline base class """
1+
"""Pipeline base class"""
22

33
import abc
44
import glob

pypiper/stage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Conceptualize a pipeline processing phase/stage. """
1+
"""Conceptualize a pipeline processing phase/stage."""
22

33
import copy
44

pypiper/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Shared utilities """
1+
"""Shared utilities"""
22

33
import os
44
import re

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Fixtures and configuration visible to all tests """
1+
"""Fixtures and configuration visible to all tests"""
22

33
import copy
44
import os

0 commit comments

Comments
 (0)