File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,8 @@ def get_scripts_toml():
5151class TestEnvDefaultsPreprocessor (Preprocessor ):
5252 def run (self , lines ): # noqa: PLR6301
5353 return (
54- "\n " .join (lines )
54+ "\n "
55+ .join (lines )
5556 .replace (MARKER_DEPENDENCIES , get_dependencies_toml ())
5657 .replace (MARKER_MATRIX , get_matrix_toml ())
5758 .replace (MARKER_SCRIPTS , get_scripts_toml ())
Original file line number Diff line number Diff line change @@ -136,7 +136,8 @@ def get_per_file_ignored_rules():
136136class RuffDefaultsPreprocessor (Preprocessor ):
137137 def run (self , lines ): # noqa: PLR6301
138138 return (
139- "\n " .join (lines )
139+ "\n "
140+ .join (lines )
140141 .replace (MARKER_VERSION , get_ruff_version ())
141142 .replace (MARKER_STABLE_RULES_COUNT , get_stable_rules_count ())
142143 .replace (MARKER_PREVIEW_RULES_COUNT , get_preview_rules_count ())
You can’t perform that action at this time.
0 commit comments