Skip to content

Commit

Permalink
Use filed parameter in configing.py instead of defaulting to True. (#590
Browse files Browse the repository at this point in the history
)

Signed-off-by: pfeairheller <[email protected]>
  • Loading branch information
pfeairheller authored Oct 30, 2023
1 parent 5f82f9b commit f9bb40b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/keri/app/configing.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def openCF(cls=None, filed=True, **kwa):
"""
if cls == None: # can't reference class before its defined below
cls = Configer
return filing.openFiler(cls=cls, filed=True, **kwa)
return filing.openFiler(cls=cls, filed=filed, **kwa)


class Configer(filing.Filer):
Expand Down Expand Up @@ -83,7 +83,7 @@ def __init__(self, name="conf", base="main", filed=True, mode="r+b",
"""
super(Configer, self).__init__(name=name,
base=base,
filed=True,
filed=filed,
mode=mode,
fext=fext,
**kwa)
Expand Down

0 comments on commit f9bb40b

Please sign in to comment.