Skip to content

Commit 495d009

Browse files
committed
Whitespace fixes
1 parent b6e5ce1 commit 495d009

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

parsl/executors/globus_compute.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
UUID_LIKE_T = Union[uuid.UUID, str]
1010

1111

12-
1312
class GlobusComputeExecutor(ParslExecutor, RepresentationMixin):
1413
""" GlobusComputeExecutor enables remote execution on Globus Compute endpoints
1514
@@ -29,7 +28,7 @@ def __init__(
2928
batch_size: int = 128,
3029
amqp_port: Optional[int] = None,
3130
**kwargs,
32-
):
31+
):
3332
"""
3433
Parameters
3534
----------
@@ -122,7 +121,6 @@ def submit(self, func: Callable, resource_specification: Dict[str, Any], *args:
122121
self._executor.resource_specification = resource_specification or self.resource_specification
123122
return self._executor.submit(func, *args, **kwargs)
124123

125-
126124
def shutdown(self, wait=True, *, cancel_futures=False):
127125
"""Clean-up the resources associated with the Executor.
128126
@@ -139,5 +137,3 @@ def shutdown(self, wait=True, *, cancel_futures=False):
139137
Tasks cannot be cancelled once they are registered.
140138
"""
141139
return self._executor.shutdown()
142-
143-

parsl/tests/configs/globus_compute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ def fresh_config():
1515
endpoint_id=endpoint_id
1616
)
1717
]
18-
)
18+
)

parsl/tests/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ def pytest_configure(config):
173173
)
174174

175175

176-
177176
@pytest.fixture(autouse=True, scope='session')
178177
def load_dfk_session(request, pytestconfig, tmpd_cwd_session):
179178
"""Load a dfk around entire test suite, except in local mode.

parsl/tests/test_bash_apps/test_basic.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ def test_auto_log_filename_format(caplog):
6767
for record in caplog.records:
6868
assert record.levelno < logging.ERROR
6969

70+
7071
@pytest.mark.shared_fs
7172
def test_parallel_for(tmpd_cwd, n=3):
7273
"""Testing a simple parallel for loop"""

0 commit comments

Comments
 (0)