Skip to content

Commit

Permalink
Update: Remove abs_path from config.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Artrajz committed Nov 27, 2024
1 parent a13f030 commit 658c386
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,8 @@ class Config(AsDictMixin):
def asdict(self):
data = {}
for attr, value in vars(self).items():
if attr == "abs_path":
continue
if isinstance(value, AsDictMixin):
data[attr] = value.asdict()
else:
Expand Down

0 comments on commit 658c386

Please sign in to comment.