CrowdStrike / ansible_collection_falcon

Comprehensive toolkit for streamlining your interactions with the CrowdStrike Falcon platform.
https://galaxy.ansible.com/ui/repo/published/crowdstrike/falcon/
GNU General Public License v3.0
97 stars 60 forks source link

fix(eda): make offset optional for nonetype #553

Closed carlosmmatos closed 1 month ago

carlosmmatos commented 1 month ago

since offset was of type int, it failed trying to convert NoneType to an integer when it was not set by default. Using the Optional[int] allows us to handle this situation to maintain our optional use of offset.