[Rpm-maint] [rpm-software-management/rpm] pythondistdeps: Switch to importlib.metadata (#1317)
Miro Hrončok
notifications at github.com
Tue Sep 22 15:45:09 UTC 2020
@hroncok commented on this pull request.
>
- names = list(py_deps.keys())
- names.sort()
- for name in names:
+ for name in sorted(list(py_deps.keys())):
```suggestion
for name in sorted(py_deps.keys()):
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/1317#pullrequestreview-493603639
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rpm.org/pipermail/rpm-maint/attachments/20200922/d3f265cb/attachment.html>
More information about the Rpm-maint
mailing list