Skip to content

Commit 80c9ec0

Browse files
committed
apply black 2024 formatting
1 parent 3732321 commit 80c9ec0

30 files changed

+32
-4
lines changed

cwltool/builder.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Command line builder."""
2+
23
import copy
34
import logging
45
import math

cwltool/checker.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Static checking of CWL workflow connectivity."""
2+
23
from collections import namedtuple
34
from typing import (
45
Any,

cwltool/context.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Shared context objects that replace use of kwargs."""
2+
23
import copy
34
import os
45
import shutil

cwltool/cwlviewer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Visualize a CWL workflow."""
2+
23
from pathlib import Path
34
from typing import Iterator, List, cast
45
from urllib.parse import urlparse

cwltool/executors.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Single and multi-threaded executors."""
2+
23
import datetime
34
import functools
45
import logging

cwltool/loghandler.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Shared logger for cwltool."""
2+
23
import logging
34

45
import coloredlogs

cwltool/mpi.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Experimental support for MPI."""
2+
23
import inspect
34
import os
45
import re

cwltool/process.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Classes and methods relevant for all CWL Process types."""
2+
23
import abc
34
import copy
45
import functools

cwltool/run_job.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Only used when there is a job script or CWLTOOL_FORCE_SHELL_POPEN=1."""
2+
23
import json
34
import os
45
import subprocess # nosec

cwltool/secrets.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Minimal in memory storage of secrets."""
2+
23
import uuid
34
from typing import Dict, List, MutableMapping, MutableSequence, Optional, cast
45

0 commit comments

Comments
 (0)