Skip to content

Commit

Permalink
Fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Oct 17, 2024
1 parent dc679ef commit 38d20e8
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions setuptools/dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,18 @@
import os
import re
import sys
from collections.abc import Sequence
from glob import iglob
from pathlib import Path
from typing import TYPE_CHECKING, Any, Dict, List, MutableMapping, Tuple, Union
from typing import (
TYPE_CHECKING,
Any,
Dict,
List,
MutableMapping,
Sequence,
Tuple,
Union,
)

from more_itertools import partition, unique_everseen
from packaging.markers import InvalidMarker, Marker
Expand Down

0 comments on commit 38d20e8

Please sign in to comment.