Skip to content

Commit

Permalink
Fix anyoptimization#304: ValueError: unsupported format character '-'…
Browse files Browse the repository at this point in the history
… (0x2d) at index 2
  • Loading branch information
blankjul committed Dec 12, 2022
1 parent bb03497 commit 94735b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pymoo/algorithms/soo/nonconvex/pso.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def __init__(self):
super().__init__()

self.f = Column(name="f", width=8)
self.S = Column(name="S", width=6)
self.w = Column(name="w", width=6)
self.S = Column(name="S", width=7)
self.w = Column(name="w", width=7)
self.c1 = Column(name="c1", width=8)
self.c2 = Column(name="c2", width=8)

Expand Down

0 comments on commit 94735b5

Please sign in to comment.