Skip to content

Commit

Permalink
Update factory docstring. Closes #204. (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamHillier authored Nov 18, 2020
1 parent b189605 commit 92df0c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion zookeeper/core/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ class C:
a: int = Field(3)
f: int = ComponentField(F)
print(C().f)
c = C()
configure(c, {})
print(c.f)
>> # Output
>> 7
Expand Down

0 comments on commit 92df0c0

Please sign in to comment.