@@ -242,8 +242,7 @@ def temp_data_files(tmp_path):
242242 cgr_file .write_text ("1.0 2.0\n " "1.1 2.1\n " "1.2 2.2\n " )
243243
244244 results_file = tmp_path / "fit_results.res"
245- results_file .write_text (
246- """
245+ results_file .write_text ("""
247246Results written: Wed Feb 25 15:14:58 2026
248247produced by cadenmyers
249248
@@ -266,8 +265,7 @@ def temp_data_files(tmp_path):
266265Variable Correlations greater than 25% (Correlations invalid)
267266------------------------------------------------------------------------------
268267No correlations greater than 25%
269- """
270- )
268+ """ )
271269 yield tmp_path
272270
273271
@@ -314,17 +312,15 @@ def parser_datafiles(tmp_path):
314312
315313 # Three-column (x, y, dy)
316314 (tmp_path / "three_col.dat" ).write_text (
317- METADATA_HEADER
318- + r"""#L r($\AA$) G($\AA^{-2}$) dG($\AA^{-2}$)
315+ METADATA_HEADER + r"""#L r($\AA$) G($\AA^{-2}$) dG($\AA^{-2}$)
3193161.0 2.0 0.2
3203171.1 2.1 0.4
3213181.2 2.2 0.6"""
322319 )
323320
324321 # Two-column (x, y)
325322 (tmp_path / "two_col.txt" ).write_text (
326- METADATA_HEADER
327- + r"""#L r($\AA$) G($\AA^{-2}$)
323+ METADATA_HEADER + r"""#L r($\AA$) G($\AA^{-2}$)
3283241.0 2.0
3293251.1 2.1
3303261.2 2.2"""
@@ -349,13 +345,10 @@ def parser_datafiles(tmp_path):
349345 )
350346
351347 # One-column
352- (tmp_path / "one_col.gr" ).write_text (
353- METADATA_HEADER
354- + r"""#L r($\AA$)
348+ (tmp_path / "one_col.gr" ).write_text (METADATA_HEADER + r"""#L r($\AA$)
3553491.0
3563501.1
357- 1.2"""
358- )
351+ 1.2""" )
359352
360353 # Five-column (extra column)
361354 (tmp_path / "five_col.gr" ).write_text (
0 commit comments