We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90b00f0 commit dc22c0aCopy full SHA for dc22c0a
pandas/util/clipboard/clipboards.py
@@ -1,5 +1,3 @@
1
-# flake8: noqa
2
-
3
import sys
4
import subprocess
5
from .exceptions import PyperclipException
@@ -8,7 +6,7 @@
8
6
Pyperclip could not find a copy/paste mechanism for your system.
9
7
For more information, please visit https://pyperclip.readthedocs.org """
10
PY2 = sys.version_info[0] == 2
11
-text_type = unicode if PY2 else str
+text_type = unicode if PY2 else str # noqa
12
13
14
def init_osx_clipboard():
0 commit comments