Skip to content

Commit

Permalink
chore: logging tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
tandemdude committed Aug 28, 2024
1 parent 94995bc commit ffa14a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightbulb/di/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ async def _get(self, dependency_id: str) -> t.Any:
f"cannot provide {dependency_id!r} - circular dependency found during creation"
)

LOGGER.debug("dependency %r depends on %s", dependency_id, creation_order)
LOGGER.debug("dependency %r depends on %s", dependency_id, creation_order[:-1])
for dep_id in creation_order:
# We already have the dependency we need
if dep_id in self._instances:
Expand Down

0 comments on commit ffa14a6

Please sign in to comment.