Best Python code snippet using localstack_python
admin.py
Source:admin.py
...21 g.user = get_current_user()22 if not g.user:23 return False24 return check_rbac([RBACAction.KAE_ADMIN])25def _validate_actions(form, field):26 txt = field.data27 try:28 lst = json.loads(txt)29 except:30 msg = "invalid json list"31 raise ValidationError(msg)32 for act_txt in lst:33 try:34 str2action(act_txt)35 except AttributeError:36 msg = f"invalid action {act_txt}"37 raise ValidationError(msg)38def _validate_clusters(form, field):39 txt = field.data...
action_menu.py
Source:action_menu.py
...19 If ``option_descriptions`` and ``actions`` have differing length.20 If one of the elements of ``actions`` is not callable.21 """22 super().__init__(option_descriptions)23 self._validate_actions(option_descriptions, actions)24 self.actions = actions25 @staticmethod26 def _validate_actions(options_descriptions, actions):27 if len(options_descriptions) != len(actions):28 raise ValueError(29 "`options_descriptions` and `actions` length mismatch"30 )31 for action in actions:32 if not callable(action):33 raise ValueError("`actions` contains a non-callable element")34 def run_action_for_user_option(self, offset=1):35 """Call the action function specified by the user's menu choice.36 Parameters37 ----------38 offset: int39 Number to start displaying menu options from.40 Returns...
action_reward_transformer.py
Source:action_reward_transformer.py
...24 df.columns = COLUMNS25 return df26 def transform(self, df: pd.DataFrame):27 return df28 def _validate_actions(self, group):29 invalid_actions = set(group[ACTION_CODE]) - set(self._available_actions)30 if len(invalid_actions) > 0:...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!