Skip to content

Commit

Permalink
Merge branch 'master' into benc-interchange-log
Browse files Browse the repository at this point in the history
  • Loading branch information
benclifford authored Oct 24, 2024
2 parents da33427 + bdf3364 commit 53f30c0
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions parsl/providers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from abc import ABCMeta, abstractmethod, abstractproperty
from typing import Any, Dict, List, Optional

from parsl.channels.base import Channel
from parsl.jobs.states import JobStatus

logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -154,18 +153,3 @@ def status_polling_interval(self) -> int:
:return: the number of seconds to wait between calls to status()
"""
pass


class Channeled():
"""A marker type to indicate that parsl should manage a Channel for this provider"""
def __init__(self) -> None:
self.channel: Channel
pass


class MultiChanneled():
"""A marker type to indicate that parsl should manage multiple Channels for this provider"""

def __init__(self) -> None:
self.channels: List[Channel]
pass

0 comments on commit 53f30c0

Please sign in to comment.