Skip to content

Commit

Permalink
Fix a flake8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
M. Mert Yildiran committed Jan 13, 2021
1 parent e687c54 commit 971e4b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pybars/_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,10 +663,10 @@ def find_lookup(self, path, path_type, call):
% (realname, call)
)
self._result.grow(
u" if value is None:\n"
u" raise PybarsError(u'Could not find variable %s')\n"
% (realname)
)
u" if value is None:\n"
u" raise PybarsError(u'Could not find variable %s')\n"
% (realname)
)

def add_escaped_expand(self, path_type_path, arguments):
(path_type, path) = path_type_path
Expand Down

0 comments on commit 971e4b2

Please sign in to comment.