Skip to content

Commit

Permalink
Typing: Import Sequence from collections.abc instead of typing; #6454
Browse files Browse the repository at this point in the history
  • Loading branch information
rdimaio committed Mar 7, 2024
1 parent 7531ef8 commit 4b1c2f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/rucio/core/rule.py
Expand Up @@ -15,14 +15,14 @@

import json
import logging
from collections.abc import Iterable, Iterator
from collections.abc import Iterable, Iterator, Sequence
from configparser import NoOptionError, NoSectionError
from copy import deepcopy
from datetime import datetime, timedelta
from os import path
from re import match
from string import Template
from typing import TYPE_CHECKING, Any, Callable, Literal, Optional, Type, TypeVar, Sequence
from typing import TYPE_CHECKING, Any, Callable, Literal, Optional, Type, TypeVar

from dogpile.cache.api import NO_VALUE
from sqlalchemy import select, update
Expand Down

0 comments on commit 4b1c2f2

Please sign in to comment.