Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuzhongshu123 committed Nov 5, 2024
1 parent a6ade22 commit 6ae47c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/common/registry/test_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from typing import List, Dict, Union
from pyhocon import ConfigTree, ConfigFactory
from kag_ant.common.registry import Registrable, Lazy, Functor
from kag.common.registry import Registrable, Lazy, Functor
import numpy as np


Expand All @@ -13,7 +13,7 @@ def __init__(self, name: str = "mock_model"):

@MockModel.register("Simple")
class Simple(MockModel):
def __init__(self, name, age=999):
def __init__(self, name, age=None):
pass


Expand Down

0 comments on commit 6ae47c5

Please sign in to comment.