Skip to content

Commit

Permalink
Fix incorrect initializer for exports
Browse files Browse the repository at this point in the history
  • Loading branch information
simu committed Mar 18, 2024
1 parent 1ff90b9 commit cab8f58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kapitan/inventory/inventory.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InventoryTarget:
parameters: dict = field(default_factory=dict)
classes: list = field(default_factory=list)
applications: list = field(default_factory=list)
exports: list = field(default_factory=list)
exports: list = field(default_factory=dict)


class Inventory(ABC):
Expand Down

0 comments on commit cab8f58

Please sign in to comment.