File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -91,19 +91,19 @@ def foo():
91
91
return
92
92
unreachable = 1
93
93
"""
94
- DOC_ERR_MSG = ' Statement is unreachable'
94
+ DOC_ERR_MSG = " Statement is unreachable"
95
95
96
96
# Initialize two workspace folders.
97
- folder1 = tmpdir .mkdir (' folder1' )
97
+ folder1 = tmpdir .mkdir (" folder1" )
98
98
ws1 = Workspace (uris .from_fs_path (str (folder1 )), Mock ())
99
99
ws1 ._config = Config (ws1 .root_uri , {}, 0 , {})
100
- folder2 = tmpdir .mkdir (' folder2' )
100
+ folder2 = tmpdir .mkdir (" folder2" )
101
101
ws2 = Workspace (uris .from_fs_path (str (folder2 )), Mock ())
102
102
ws2 ._config = Config (ws2 .root_uri , {}, 0 , {})
103
103
104
104
# Create configuration file for workspace folder 1.
105
- mypy_config = folder1 .join (' mypy.ini' )
106
- mypy_config .write (' [mypy]\n warn_unreachable = True' )
105
+ mypy_config = folder1 .join (" mypy.ini" )
106
+ mypy_config .write (" [mypy]\n warn_unreachable = True" )
107
107
108
108
# Initialize settings for both folders.
109
109
plugin .pylsp_settings (ws1 ._config )
You can’t perform that action at this time.
0 commit comments