Skip to content

Commit

Permalink
fix mypyg
Browse files Browse the repository at this point in the history
  • Loading branch information
bobokvsky committed Aug 19, 2024
1 parent 181cf40 commit a775700
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": false,
"python.linting.flake8Enabled": true,
"python.formatting.provider": "none",
"python.analysis.extraPaths": [
"${workspaceFolder}"
Expand Down Expand Up @@ -43,4 +43,6 @@
"githubPullRequests.ignoredPullRequestBranches": [
"master"
],
"python.linting.pycodestyleEnabled": false,
"python.linting.enabled": true,
}
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mypy:
mypy -p datapipe --ignore-missing-imports --follow-imports=silent --namespace-packages
2 changes: 1 addition & 1 deletion datapipe/step/batch_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ def get_full_process_ids(
)

# Список ключей из фильтров, которые нужно добавить в результат
extra_filters: Optional[List[str, Dict]] = None
extra_filters: Optional[List[Dict[str, Any]]] = None
if run_config is not None:
extra_filters = [{
k: v
Expand Down

0 comments on commit a775700

Please sign in to comment.