Skip to content

Commit 2ce8c67

Browse files
committed
PEP8 compliance for ENH pandas-dev#25436
1 parent 8982b90 commit 2ce8c67

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pandas/io/formats/latex.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ def pad_empties(x):
129129
if self.label is None:
130130
label_ = ''
131131
warnings.warn('no LaTeX label has been provided; '
132-
'referencing with \\ref{} will not be available')
132+
'referencing with \\ref{} will not'
133+
'be available')
133134
else:
134135
label_ = '\n\\label{{{}}}'.format(self.label)
135136

@@ -155,7 +156,8 @@ def pad_empties(x):
155156

156157
if self.label is None:
157158
warnings.warn('no LaTeX label has been provided; '
158-
'referencing with \\ref{} will not be available')
159+
'referencing with \\ref{} will not'
160+
'be available')
159161
else:
160162
buf.write('\\label{{{}}}'.format(self.label))
161163

0 commit comments

Comments
 (0)