Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
wxtim committed Aug 23, 2024
1 parent 35d631e commit 2d8e721
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cylc/flow/parsec/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import sys
from textwrap import dedent
from typing import TYPE_CHECKING, Callable, Iterable, List, Optional
from typing_extensions import Literal

from cylc.flow.context_node import ContextNode
from cylc.flow.parsec.exceptions import (
Expand All @@ -36,11 +35,12 @@

if TYPE_CHECKING:
from optparse import Values
from typing_extensions import Literal


class ParsecConfig:
"""Object wrapper for parsec functions."""
META: Literal[str] = 'meta'
META: "Literal['meta']" = 'meta'

def __init__(
self,
Expand Down
1 change: 0 additions & 1 deletion cylc/flow/scripts/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
"""

import asyncio
import json

import os.path
from typing import List, Optional, TYPE_CHECKING
Expand Down

0 comments on commit 2d8e721

Please sign in to comment.