Skip to content

Commit

Permalink
Merge pull request #25 from fraove/fix-binary-include
Browse files Browse the repository at this point in the history
Fix initialization of PropIncBin
  • Loading branch information
molejar authored Sep 18, 2024
2 parents 23a2c49 + 80a111b commit 3d6270c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fdt/items.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def __init__(self, name, data=None, file_name=None, rpath=None):
:param file_name: File name
:param rpath: Relative path
"""
super().__init__(name, data)
super().__init__(name, data=data)
self.file_name = file_name
self.relative_path = rpath

Expand Down

0 comments on commit 3d6270c

Please sign in to comment.