Skip to content

Commit 2794260

Browse files
committed
MessageFix: remove extra 'C'
1 parent 7382644 commit 2794260

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

control/statesp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def __init__(self, *args):
146146
if self.states != B.shape[0]:
147147
raise ValueError("A and B must have the same number of rows.")
148148
if self.states != C.shape[1]:
149-
raise ValueError("A and C C must have the same number of columns.")
149+
raise ValueError("A and C must have the same number of columns.")
150150
if self.inputs != B.shape[1]:
151151
raise ValueError("B and D must have the same number of columns.")
152152
if self.outputs != C.shape[0]:

0 commit comments

Comments
 (0)