Skip to content

Commit 501fe12

Browse files
committed
chore: prepare for release
1 parent 43cd018 commit 501fe12

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

poetry.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "unimog"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "Elegant service objects for Python."
55
authors = ["Hannes Moser <[email protected]>"]
66
repository = "https://github.com/eliias/unimog"

unimog/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from unimog.action import Action
2-
from unimog.context import Context
3-
from unimog.organizer import Organizer
1+
from unimog.action import Action # noqa
2+
from unimog.context import Context # noqa
3+
from unimog.organizer import Organizer # noqa

unimog/action.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def __call__(self, **kwargs) -> Out:
2323

2424
try:
2525
self.perform()
26-
return self.output.success()
26+
return self.output.success() # noqa
2727
except Exception as e:
2828
return self.output.failure(str(e))
2929

unimog/organizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from dataclasses import asdict
2-
from typing import TypeVar, Type
2+
from typing import TypeVar
33

44
from unimog import Context
55
from unimog.action import Action

0 commit comments

Comments
 (0)