Skip to content

Commit 26d93a5

Browse files
committed
password and username are mandatory through dependence
1 parent 3de7d79 commit 26d93a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/interfaces/io.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1168,8 +1168,8 @@ class MySQLSinkInputSpec(DynamicTraitedSpec, BaseInterfaceInputSpec):
11681168
config = File(mandatory=True, xor=['host'], desc="MySQL Options File (same format as my.cnf)")
11691169
database_name = traits.Str(mandatory=True, desc='Otherwise known as the schema name')
11701170
table_name = traits.Str(mandatory=True)
1171-
username = traits.Str(mandatory=True)
1172-
password = traits.Str(mandatory=True)
1171+
username = traits.Str()
1172+
password = traits.Str()
11731173

11741174

11751175
class MySQLSink(IOBase):

0 commit comments

Comments
 (0)