We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feec8de commit 41418d4Copy full SHA for 41418d4
2 files changed
.pre-commit-config.yaml
@@ -32,7 +32,7 @@ repos:
32
- id: rst-inline-touching-normal
33
- id: text-unicode-replacement-char
34
- repo: https://github.com/asottile/pyupgrade
35
- rev: v2.18.2
+ rev: v2.19.1
36
hooks:
37
- id: pyupgrade
38
args: [--py36-plus]
@@ -45,7 +45,7 @@ repos:
45
46
- id: setup-cfg-fmt
47
- repo: https://github.com/psf/black
48
- rev: 21.5b1
+ rev: 21.5b2
49
50
- id: black
51
- repo: https://github.com/asottile/blacken-docs
src/_pytask/profile.py
@@ -261,5 +261,5 @@ def _export_to_json(profile):
261
262
def _get_info_names(profile):
263
"""Get names of infos of tasks."""
264
- info_names = sorted(set().union(*[set(val) for val in profile.values()]))
+ info_names = sorted(set().union(*(set(val) for val in profile.values())))
265
return info_names
0 commit comments