Merge pull request #4822 from radarhere/unused

Removed unused variables
This commit is contained in:
Hugo van Kemenade 2020-07-29 09:45:07 +03:00 committed by GitHub
commit c9499ed4da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 6 deletions

View File

@ -1,7 +1,6 @@
import base64 import base64
import io import io
import itertools import itertools
import logging
import os import os
import re import re
from collections import namedtuple from collections import namedtuple
@ -19,8 +18,6 @@ from .helper import (
skip_unless_feature, skip_unless_feature,
) )
logger = logging.getLogger(__name__)
@skip_unless_feature("libtiff") @skip_unless_feature("libtiff")
class LibTiffTestCase: class LibTiffTestCase:

View File

@ -1,4 +1,3 @@
import logging
import os import os
from io import BytesIO from io import BytesIO
@ -16,8 +15,6 @@ from .helper import (
is_win32, is_win32,
) )
logger = logging.getLogger(__name__)
class TestFileTiff: class TestFileTiff:
def test_sanity(self, tmp_path): def test_sanity(self, tmp_path):