We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccb44cc commit 90b00f0Copy full SHA for 90b00f0
pandas/util/clipboard/__init__.py
@@ -25,8 +25,6 @@
25
"""
26
__version__ = '1.5.27'
27
28
-# flake8: noqa
29
-
30
import platform
31
import os
32
import subprocess
@@ -62,14 +60,16 @@ def determine_clipboard():
62
60
if HAS_DISPLAY:
63
61
# Determine which command/module is installed, if any.
64
try:
65
- import gtk # check if gtk is installed
+ # Check if gtk is installed
+ import gtk # noqa
66
except ImportError:
67
pass
68
else:
69
return init_gtk_clipboard()
70
71
72
- import PyQt4 # check if PyQt4 is installed
+ # Check if PyQt4 is installed
+ import PyQt4 # noqa
73
74
75
0 commit comments