Skip to content

Commit 74cbc89

Browse files
committed
fix(github): pyright;
- Activate python venv before pyright.
1 parent b6f1c45 commit 74cbc89

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ckanext/language_domains/blueprint.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ def _decorator_function(*args: Any, **kwargs: Any):
3838
http_args['_came_from'] = http_args.pop(
3939
'next', http_args.pop('came_from', ''))
4040

41-
# type_ignore_reason: incomplete typing
42-
request.args = ImmutableMultiDict(http_args) # type: ignore
41+
request.args = ImmutableMultiDict(http_args)
4342

4443
return _func(*args, **kwargs)
4544
return _decorator_function

0 commit comments

Comments
 (0)