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 cdbd94f commit 0916a04Copy full SHA for 0916a04
pandas/io/sas/sas_xport.py
@@ -367,7 +367,7 @@ def _read_header(self):
367
fl = field["field_length"]
368
if field["ntype"] == "numeric" and ((fl < 2) or (fl > 8)):
369
self.close()
370
- msg = "f{Floating field width {fl} is not between 2 and 8.}"
+ msg = f"Floating field width {fl} is not between 2 and 8."
371
raise TypeError(msg)
372
373
for k, v in field.items():
0 commit comments