Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
douwevandermeij committed Mar 31, 2023
1 parent 2ef1adf commit 9e197fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fractal/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Fractal is a scaffolding toolkit for building SOLID logic for your Python applications."""

__version__ = "3.1.0"
__version__ = "3.1.1"

from abc import ABC

Expand Down
2 changes: 1 addition & 1 deletion fractal/contrib/fastapi/routers/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def get_entity(
):
return self.ingress_service.get(
entity_id=str(entity_id),
acount_id=str(kwargs.get("account")),
account_id=str(kwargs.get("account")),
specification=specification,
)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fractal-toolkit"
version = "3.1.0"
version = "3.1.1"
description = "Fractal is a scaffolding toolkit for building SOLID logic for your Python applications."
authors = ["Douwe van der Meij <douwe@karibu-online.nl>"]

Expand Down

0 comments on commit 9e197fa

Please sign in to comment.