Skip to content

Commit

Permalink
Fix a type error
Browse files Browse the repository at this point in the history
  • Loading branch information
Donaim committed Mar 20, 2024
1 parent e890245 commit 9c33501
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aligntools/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
from enum import IntEnum
from math import ceil, floor
import re
from typing import Tuple, Iterable, Optional, Set, List, Union
from typing import Tuple, Iterable, Optional, Set, List, Union, Dict
from dataclasses import dataclass
from functools import cached_property, reduce
from fractions import Fraction

import aligntools.libexceptions as ex


class IntDict(dict[int, int]):
class IntDict(Dict[int, int]):
"""
An extension of the basic Python dictionary designed for integer-to-integer mappings.
Expand Down

0 comments on commit 9c33501

Please sign in to comment.