Open nfx opened 6 months ago
Strings like 'foo ' 'bar' resolve to 'foo bar', but are very confusing to read:
'foo ' 'bar'
'foo bar'
'The use of default dbfs: references is deprecated: ' '/mnt/things/e/f/g',
apparently p = astroid.parse('x = "foo bar" " baz"') collapses into a single str const
p = astroid.parse('x = "foo bar" " baz"')
Strings like
'foo ' 'bar'
resolve to'foo bar'
, but are very confusing to read: