Compare commits
2 Commits
v0.29.2.3
...
dependabot
Author | SHA1 | Date | |
---|---|---|---|
96048a93ff | |||
72b12a5ca2 |
@ -412,7 +412,9 @@ class MyCompanies:
|
||||
return (c for c in self._companies)
|
||||
|
||||
def get_wam_holdings(self) -> Generator[Holding, None, None]:
|
||||
for holding in sorted(self.holdings.values(), key=lambda h: (-len(h.get_wam_companies(False)), -len(h.get_wam_companies()))):
|
||||
for holding in sorted(
|
||||
self.holdings.values(), key=lambda h: (-len(h.get_wam_companies(False)), -len(h.get_wam_companies()))
|
||||
):
|
||||
yield holding
|
||||
|
||||
def __str__(self):
|
||||
|
@ -12,5 +12,5 @@ pur==6.0.1
|
||||
responses==0.18.0
|
||||
Sphinx==4.4.0
|
||||
twine==3.8.0
|
||||
wheel==0.37.1
|
||||
wheel==0.38.1
|
||||
black==22.1.0
|
||||
|
Reference in New Issue
Block a user