Skip to content

Commit 90b00f0

Browse files
committed
CLN: Make clipboard/__init__.py flake8-able
1 parent ccb44cc commit 90b00f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pandas/util/clipboard/__init__.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
"""
2626
__version__ = '1.5.27'
2727

28-
# flake8: noqa
29-
3028
import platform
3129
import os
3230
import subprocess
@@ -62,14 +60,16 @@ def determine_clipboard():
6260
if HAS_DISPLAY:
6361
# Determine which command/module is installed, if any.
6462
try:
65-
import gtk # check if gtk is installed
63+
# Check if gtk is installed
64+
import gtk # noqa
6665
except ImportError:
6766
pass
6867
else:
6968
return init_gtk_clipboard()
7069

7170
try:
72-
import PyQt4 # check if PyQt4 is installed
71+
# Check if PyQt4 is installed
72+
import PyQt4 # noqa
7373
except ImportError:
7474
pass
7575
else:

0 commit comments

Comments
 (0)