We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de7d79 commit 26d93a5Copy full SHA for 26d93a5
nipype/interfaces/io.py
@@ -1168,8 +1168,8 @@ class MySQLSinkInputSpec(DynamicTraitedSpec, BaseInterfaceInputSpec):
1168
config = File(mandatory=True, xor=['host'], desc="MySQL Options File (same format as my.cnf)")
1169
database_name = traits.Str(mandatory=True, desc='Otherwise known as the schema name')
1170
table_name = traits.Str(mandatory=True)
1171
- username = traits.Str(mandatory=True)
1172
- password = traits.Str(mandatory=True)
+ username = traits.Str()
+ password = traits.Str()
1173
1174
1175
class MySQLSink(IOBase):
0 commit comments