Skip to content

Commit 27a99eb

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7b47a00 commit 27a99eb

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

risuclient/shell.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
import tempfile
3636
import sys
3737

38-
3938
if sys.version_info >= (3, 4):
4039
# Handle imp deprecation towards importlib
4140

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
command = "git tag|sort -V|grep -v ^[a-Z]|grep -v 2017|tail -1"
3333
proc = subprocess.Popen([command], stdout=subprocess.PIPE, shell=True)
34-
(out, err) = proc.communicate()
34+
out, err = proc.communicate()
3535

3636
version = out.strip().decode("utf-8")
3737

0 commit comments

Comments
 (0)