Skip to content

Commit

Permalink
Apply black
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmundt committed Feb 21, 2024
1 parent 1bccb16 commit 9b21273
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion pyomo/contrib/appsi/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,6 @@ def __init__(

class Solver(abc.ABC):
class Availability(enum.IntEnum):
"""Docstring"""
NotFound = 0
BadVersion = -1
BadLicense = -2
Expand Down
6 changes: 5 additions & 1 deletion pyomo/contrib/solver/ipopt.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ def __init__(
),
)
self.writer_config: ConfigDict = self.declare(
'writer_config', ConfigValue(default=NLWriter.CONFIG(), description="Configuration that controls options in the NL writer.")
'writer_config',
ConfigValue(
default=NLWriter.CONFIG(),
description="Configuration that controls options in the NL writer.",
),
)


Expand Down

0 comments on commit 9b21273

Please sign in to comment.