mirror of
https://github.com/microsoft/qlib.git
synced 2026-07-15 08:46:56 +08:00
code for formatting storage.py using black(v21.5)
This commit is contained in:
@@ -124,12 +124,12 @@ class CalendarStorage(BaseStorage):
|
|||||||
|
|
||||||
@overload
|
@overload
|
||||||
def __setitem__(self, i: int, value: CalVT) -> None:
|
def __setitem__(self, i: int, value: CalVT) -> None:
|
||||||
"""x.__setitem__(i, o) <==> x[i] = o"""
|
"""x.__setitem__(i, o) <==> (x[i] = o)"""
|
||||||
...
|
...
|
||||||
|
|
||||||
@overload
|
@overload
|
||||||
def __setitem__(self, s: slice, value: Iterable[CalVT]) -> None:
|
def __setitem__(self, s: slice, value: Iterable[CalVT]) -> None:
|
||||||
"""x.__setitem__(s, o) <==> x[s] = o"""
|
"""x.__setitem__(s, o) <==> (x[s] = o)"""
|
||||||
...
|
...
|
||||||
|
|
||||||
def __setitem__(self, i, value) -> None:
|
def __setitem__(self, i, value) -> None:
|
||||||
@@ -187,15 +187,15 @@ class InstrumentStorage(BaseStorage):
|
|||||||
raise NotImplementedError("Subclass of InstrumentStorage must implement `update` method")
|
raise NotImplementedError("Subclass of InstrumentStorage must implement `update` method")
|
||||||
|
|
||||||
def __setitem__(self, k: InstKT, v: InstVT) -> None:
|
def __setitem__(self, k: InstKT, v: InstVT) -> None:
|
||||||
""" Set self[key] to value. """
|
"""Set self[key] to value."""
|
||||||
raise NotImplementedError("Subclass of InstrumentStorage must implement `__setitem__` method")
|
raise NotImplementedError("Subclass of InstrumentStorage must implement `__setitem__` method")
|
||||||
|
|
||||||
def __delitem__(self, k: InstKT) -> None:
|
def __delitem__(self, k: InstKT) -> None:
|
||||||
""" Delete self[key]. """
|
"""Delete self[key]."""
|
||||||
raise NotImplementedError("Subclass of InstrumentStorage must implement `__delitem__` method")
|
raise NotImplementedError("Subclass of InstrumentStorage must implement `__delitem__` method")
|
||||||
|
|
||||||
def __getitem__(self, k: InstKT) -> InstVT:
|
def __getitem__(self, k: InstKT) -> InstVT:
|
||||||
""" x.__getitem__(k) <==> x[k] """
|
"""x.__getitem__(k) <==> x[k]"""
|
||||||
raise NotImplementedError("Subclass of InstrumentStorage must implement `__getitem__` method")
|
raise NotImplementedError("Subclass of InstrumentStorage must implement `__getitem__` method")
|
||||||
|
|
||||||
|
|
||||||
@@ -364,7 +364,12 @@ class FeatureStorage(BaseStorage):
|
|||||||
|
|
||||||
@overload
|
@overload
|
||||||
def __getitem__(self, s: slice) -> pd.Series:
|
def __getitem__(self, s: slice) -> pd.Series:
|
||||||
"""x.__getitem__(slice(start: int, stop: int, step: int)) <==> x[start:stop:step] == pd.Series(values, index=pd.RangeIndex(start, len(values))"""
|
"""x.__getitem__(slice(start: int, stop: int, step: int)) <==> x[start:stop:step]
|
||||||
|
|
||||||
|
Returns
|
||||||
|
-------
|
||||||
|
pd.Series(values, index=pd.RangeIndex(start, len(values))
|
||||||
|
"""
|
||||||
...
|
...
|
||||||
|
|
||||||
@overload
|
@overload
|
||||||
|
|||||||
Reference in New Issue
Block a user