Skip to content

Commit

Permalink
set default value for read_only in rich_repr
Browse files Browse the repository at this point in the history
  • Loading branch information
skshetry authored Dec 30, 2023
1 parent add14dd commit 7847703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dvc_objects/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __repr__(self):
def __rich_repr__(self):
yield "fs", self.fs
yield "path", self.path
yield "read_only", self.read_only
yield "read_only", self.read_only, False

def _init(self, dname: str) -> None:
if self.read_only:
Expand Down

0 comments on commit 7847703

Please sign in to comment.