Skip to content

Commit 87232e7

Browse files
committed
Update client.py
1 parent 62de66d commit 87232e7

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

jupiterone/client.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,6 @@ def create_smartclass_query(self, smartclass_id: str = None, query: str = None,
653653
query (str): The J1QL for the query being created.
654654
query_description (str): The description of the query being created.
655655
"""
656-
657656
variables = {
658657
"input": {
659658
"smartClassId": smartclass_id,
@@ -672,7 +671,6 @@ def evaluate_smartclass(self, smartclass_id: str = None):
672671
args:
673672
smartclass_id (str): The unique ID of the Smart Class to trigger the evaluation for.
674673
"""
675-
676674
variables = {
677675
"smartClassId": smartclass_id
678676
}
@@ -687,7 +685,6 @@ def get_smartclass_details(self, smartclass_id: str = None):
687685
args:
688686
smartclass_id (str): The unique ID of the Smart Class to fetch details from.
689687
"""
690-
691688
variables = {
692689
"id": smartclass_id
693690
}
@@ -700,7 +697,6 @@ def list_configured_alert_rules(self):
700697
"""List defined Alert Rules configured in J1 account
701698
702699
"""
703-
704700
variables = {
705701
"limit": 100
706702
}
@@ -715,7 +711,6 @@ def generate_j1ql(self, natural_language_prompt: str = None):
715711
args:
716712
natural_language_prompt (str): The naturalLanguageQuery prompt input to generate J1QL from.
717713
"""
718-
719714
variables = {
720715
"input": {
721716
"naturalLanguageQuery": natural_language_prompt

0 commit comments

Comments
 (0)