Skip to content

Commit

Permalink
Fixed linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroBone committed Feb 12, 2024
1 parent 709df50 commit 06b83ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/officialeye/_internal/template/internal_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def get_matcher(self, /) -> IMatcher:
matcher_id = self._matching["engine"]

matcher_configs: dict = self._matching["config"]
matcher_config: ConfigDict = matcher_configs[matcher_id] if matcher_id in matcher_configs else {}
matcher_config: ConfigDict = matcher_configs.get(matcher_id, {})

return get_internal_context().get_matcher(matcher_id, matcher_config)

Expand Down

0 comments on commit 06b83ef

Please sign in to comment.