Skip to content

Commit

Permalink
fix typo in filter class name (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
alanag13 committed Aug 9, 2021
1 parent f0b468d commit 697c8d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/py42/sdk/queries/fileevents/filters/risk_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def choices():
RiskIndicator.CloudDataExposures.choices()
+ RiskIndicator.CloudStorageUploads.choices()
+ RiskIndicator.CodeRepositoryUploads.choices()
+ RiskIndicator.EmaiServiceUploads.choices()
+ RiskIndicator.EmailServiceUploads.choices()
+ RiskIndicator.ExternalDevices.choices()
+ RiskIndicator.FileCategories.choices()
+ RiskIndicator.MessagingServiceUploads.choices()
Expand Down Expand Up @@ -124,7 +124,7 @@ class CodeRepositoryUploads:
def choices():
return get_attribute_keys_from_class(RiskIndicator.CodeRepositoryUploads)

class EmaiServiceUploads:
class EmailServiceUploads:
ONESIXTHREE_DOT_COM = "163.com upload"
ONETWOSIX_DOT_COM = "126.com upload"
AOL = "AOL upload"
Expand All @@ -142,7 +142,7 @@ class EmaiServiceUploads:

@staticmethod
def choices():
return get_attribute_keys_from_class(RiskIndicator.EmaiServiceUploads)
return get_attribute_keys_from_class(RiskIndicator.EmailServiceUploads)

class ExternalDevices:
AIRDROP = "AirDrop"
Expand Down

0 comments on commit 697c8d7

Please sign in to comment.