Skip to content

Commit 5d7ff54

Browse files
committed
remove variable which is not used
1 parent 63c6d84 commit 5d7ff54

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

pandas/io/parsers.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -343,22 +343,6 @@
343343
Alias for sep.
344344
"""
345345

346-
_fwf_widths = """\
347-
colspecs : list of pairs (int, int) or 'infer'. optional
348-
A list of pairs (tuples) giving the extents of the fixed-width
349-
fields of each line as half-open intervals (i.e., [from, to[ ).
350-
String value 'infer' can be used to instruct the parser to try
351-
detecting the column specifications from the first 100 rows of
352-
the data which are not being skipped via skiprows (default='infer').
353-
widths : list of ints. optional
354-
A list of field widths which can be used instead of 'colspecs' if
355-
the intervals are contiguous.
356-
delimiter : str, default ``'\t' + ' '``
357-
Characters to consider as filler characters in the fixed-width file.
358-
Can be used to specify the filler character of the fields
359-
if it is not spaces (e.g., '~').
360-
"""
361-
362346

363347
def _validate_integer(name, val, min_val=0):
364348
"""

0 commit comments

Comments
 (0)