aboutsummaryrefslogtreecommitdiffstats
path: root/python/ops
diff options
context:
space:
mode:
Diffstat (limited to 'python/ops')
-rw-r--r--python/ops/funds.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/ops/funds.py b/python/ops/funds.py
index aaea047e..f642224e 100644
--- a/python/ops/funds.py
+++ b/python/ops/funds.py
@@ -17,7 +17,7 @@ class Fund:
def __class_getitem__(cls, fund_name: str):
return cls._registry[fund_name]
- def __init_subclass_(cls, fund_name: str):
+ def __init_subclass__(cls, fund_name: str):
cls.name = fund_name
cls._registry[fund_name] = cls