diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-03-18 22:47:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-18 22:47:24 -0400 |
commit | 57dd827963491439e40eb5dfe20811c14ea757ff (patch) | |
tree | 9503d37d813a83a4c991d8ff8b2ed92e4a97e4ce /cmd2/clipboard.py | |
parent | 83a28727d012ab067d18d89d3b1ce6410459f67b (diff) | |
parent | 4523bc6a9fc36ff879b6767dcd23923aa40c4c47 (diff) | |
download | cmd2-git-57dd827963491439e40eb5dfe20811c14ea757ff.tar.gz |
Merge pull request #648 from python-cmd2/attributes
Converted class attributes to instance attributes
Diffstat (limited to 'cmd2/clipboard.py')
-rw-r--r-- | cmd2/clipboard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/clipboard.py b/cmd2/clipboard.py index e0d1fc03..b2331649 100644 --- a/cmd2/clipboard.py +++ b/cmd2/clipboard.py @@ -10,7 +10,7 @@ import pyperclip try: from pyperclip.exceptions import PyperclipException except ImportError: # pragma: no cover - # noinspection PyUnresolvedReferences + # noinspection PyUnresolvedReferences,PyProtectedMember from pyperclip import PyperclipException # Can we access the clipboard? Should always be true on Windows and Mac, but only sometimes on Linux |