Skip to content

Commit

Permalink
Apply ruff --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rht committed Aug 7, 2023
1 parent cc9bb12 commit 1641f15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
6 changes: 1 addition & 5 deletions mesa/batchrunner.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
import itertools
from collections.abc import Iterable, Mapping
from functools import partial
from multiprocessing import Pool
from typing import (
Any,
Dict,
List,
Optional,
Tuple,
Type,
Union,
)
from collections.abc import Iterable, Mapping

from tqdm.auto import tqdm

Expand Down
4 changes: 1 addition & 3 deletions mesa/space.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,16 @@
import collections
import itertools
import math
from collections.abc import Iterable, Iterator, Sequence
from numbers import Real
from typing import (
Any,
Callable,
List,
Tuple,
TypeVar,
Union,
cast,
overload,
)
from collections.abc import Iterable, Iterator, Sequence
from warnings import warn

import networkx as nx
Expand Down

0 comments on commit 1641f15

Please sign in to comment.