Skip to content

Commit dc22c0a

Browse files
committed
CLN: Make clipboards.py flake8-able
1 parent 90b00f0 commit dc22c0a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/util/clipboard/clipboards.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# flake8: noqa
2-
31
import sys
42
import subprocess
53
from .exceptions import PyperclipException
@@ -8,7 +6,7 @@
86
Pyperclip could not find a copy/paste mechanism for your system.
97
For more information, please visit https://pyperclip.readthedocs.org """
108
PY2 = sys.version_info[0] == 2
11-
text_type = unicode if PY2 else str
9+
text_type = unicode if PY2 else str # noqa
1210

1311

1412
def init_osx_clipboard():

0 commit comments

Comments
 (0)