diff options
| author | MarcoFalke <[email protected]> | 2017-01-18 10:48:43 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2017-01-18 10:48:52 +0100 |
| commit | b0b57a17306a7e963a4fe463f84e2b150a00a859 (patch) | |
| tree | 809d4c3942e8042045767ef40e37ccc0e7701bc8 /contrib/devtools | |
| parent | Merge #9561: Wake message handling thread when we receive a new block (diff) | |
| parent | Remove unused Python imports (diff) | |
| download | discoin-b0b57a17306a7e963a4fe463f84e2b150a00a859.tar.xz discoin-b0b57a17306a7e963a4fe463f84e2b150a00a859.zip | |
Merge #9508: Remove unused Python imports
95bab82 Remove unused Python imports (practicalswift)
Diffstat (limited to 'contrib/devtools')
| -rwxr-xr-x | contrib/devtools/github-merge.py | 2 | ||||
| -rwxr-xr-x | contrib/devtools/test-security-check.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/contrib/devtools/github-merge.py b/contrib/devtools/github-merge.py index aae966a8f..0cee0921b 100755 --- a/contrib/devtools/github-merge.py +++ b/contrib/devtools/github-merge.py @@ -15,7 +15,7 @@ # In case of a clean merge that is accepted by the user, the local branch with # name $BRANCH is overwritten with the merged result, and optionally pushed. from __future__ import division,print_function,unicode_literals -import os,sys +import os from sys import stdin,stdout,stderr import argparse import subprocess diff --git a/contrib/devtools/test-security-check.py b/contrib/devtools/test-security-check.py index c0f120392..18f9835fa 100755 --- a/contrib/devtools/test-security-check.py +++ b/contrib/devtools/test-security-check.py @@ -7,7 +7,6 @@ Test script for security-check.py ''' from __future__ import division,print_function import subprocess -import sys import unittest def write_testcode(filename): |