1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-04 10:19:16 +02:00

tox.ini and py35 support, fix linting errors

This commit is contained in:
holger krekel 2018-09-07 18:30:39 +02:00
parent c24c21f890
commit 940f665b54
6 changed files with 59 additions and 17 deletions

View file

@ -2,8 +2,11 @@ from __future__ import print_function
import deltachat
import re
from deltachat import capi
from deltachat.capi import ffi
from queue import Queue
try:
from queue import Queue
except ImportError:
from Queue import Queue
def test_empty_context():