Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Huth committed Sep 1, 2023
1 parent c9229e1 commit ac0f3b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Examples/Python/python/acts/_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ def wrapped(self, *args, **kwargs):
try:
setattr(cfg, k, v)
except TypeError as e:
raise RuntimeError("{}: Failed to set {}={}".format(type(cfg), k, v)) from e
raise RuntimeError(
"{}: Failed to set {}={}".format(type(cfg), k, v)
) from e
else:
_kwargs[k] = v
try:
Expand Down

0 comments on commit ac0f3b0

Please sign in to comment.