Skip to content

Commit

Permalink
chore: fix typing of userdata_raw (#5710)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealFalcon committed Sep 17, 2024
1 parent bde913a commit df75b52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudinit/sources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ def __init__(self, sys_cfg, distro: Distro, paths: Paths, ud_proc=None):
self.paths = paths
self.userdata: Optional[Any] = None
self.metadata: dict = {}
self.userdata_raw: Optional[str] = None
self.userdata_raw: Optional[Union[str, bytes]] = None
self.vendordata = None
self.vendordata2 = None
self.vendordata_raw = None
Expand Down

0 comments on commit df75b52

Please sign in to comment.