Skip to content

Commit

Permalink
fix: adjust for black issues
Browse files Browse the repository at this point in the history
  • Loading branch information
phchri committed Jul 8, 2024
1 parent d777586 commit c2b0be1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyomo/solvers/plugins/solvers/SAS.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ def _uploadMpsFile(self, s, unique):
data=mpscsv_table_name,
casOut={"name": mpsdata_table_name, "replace": True},
format="FREE",
maxLength=256
maxLength=256,
)

# Delete the table we don't need anymore
Expand All @@ -642,7 +642,7 @@ def _uploadMpsFile(self, s, unique):
mpsFileString=mps_file.read(),
casout={"name": mpsdata_table_name, "replace": True},
format="FREE",
maxLength=256
maxLength=256,
)
return mpsdata_table_name

Expand Down

0 comments on commit c2b0be1

Please sign in to comment.