Skip to content

Commit d93de6c

Browse files
committed
Fix trailing whitespace in FixtureDef.__repr__
1 parent b895816 commit d93de6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_pytest/fixtures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ def execute(self, request):
899899
return hook.pytest_fixture_setup(fixturedef=self, request=request)
900900

901901
def __repr__(self):
902-
return "<FixtureDef name=%r scope=%r baseid=%r >" % (
902+
return "<FixtureDef name=%r scope=%r baseid=%r>" % (
903903
self.argname,
904904
self.scope,
905905
self.baseid,

0 commit comments

Comments
 (0)