Skip to content

Commit f244906

Browse files
committed
linting fix
1 parent bba544a commit f244906

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ def _now():
443443
def _process_custom_attributes(item):
444444
if not hasattr(item, 'callspec'):
445445
return
446-
if not 'execparams' in item.callspec.params:
446+
if 'execparams' not in item.callspec.params:
447447
return
448448
ep: Optional[List[Dict[str, Dict[str, object]]]] = item.callspec.params['execparams']
449449
if ep.custom_attributes_raw is None:

0 commit comments

Comments
 (0)