Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused (multi)channeled marker types #3653

Merged
merged 2 commits into from
Oct 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading