Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 27, 2024
1 parent 291c721 commit 658bf5e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions mesa/experimental/signals/signal.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@
_hashable_signal = namedtuple("_HashableSignal", "instance name")

CURRENT_COMPUTED: Computed | None = None # the current Computed that is evaluating
PROCESSING_SIGNALS: set[tuple[str,]] = (
set()
)
PROCESSING_SIGNALS: set[tuple[str,]] = set()


class BaseObservable(ABC):
Expand Down Expand Up @@ -108,7 +106,6 @@ def __set__(self, instance: HasObservables, value): # noqa D103
class Computable(BaseObservable):
"""A Computable that is depended on one or more Observables.
.. code-block:: python
class MyAgent(Agent):
Expand Down

0 comments on commit 658bf5e

Please sign in to comment.