ynop / audiomate

Consider using f-strings PYL-C0209
Performance
Minor
2 occurrences in this check
Formatting a regular string which could be a f-string
44
45# Packages required for testing
46TESTS = [
47    'pytest==%s' % (PYTEST_VERSION_,),48    'requests_mock==1.7.0'
49]
50
Formatting a regular string which could be a f-string
28EXTRAS = {
29    'dev': [
30        'click==7.0',
31        'pytest==%s' % (PYTEST_VERSION_,),32        'pytest-runner==5.2',
33        'pytest-cov==2.8.1',
34        'requests_mock==1.7.0',