Apply Black 20.8b1 formatting

This commit is contained in:
Seth Michael Larson 2020-08-27 15:19:56 -05:00 committed by GitHub
parent 1d6311164e
commit 1a8a301cd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 24 additions and 16 deletions

View File

@ -218,7 +218,8 @@ class ImportedMLModel(MLModel):
body["definition"] = serializer.serialize_model()
self._client.ml.put_trained_model(
model_id=self._model_id, body=body,
model_id=self._model_id,
body=body,
)
def predict(self, X: Union[List[float], List[List[float]]]) -> np.ndarray:

View File

@ -93,7 +93,8 @@ class LGBMForestTransformer(ModelTransformer):
self, tree_id: int, node_id: int, tree_node_json_obj: Dict[str, Any]
) -> TreeNode:
return TreeNode(
node_idx=node_id, leaf_value=[float(tree_node_json_obj["leaf_value"])],
node_idx=node_id,
leaf_value=[float(tree_node_json_obj["leaf_value"])],
)
def build_tree(self, tree_id: int, tree_json_obj: Dict[str, Any]) -> Tree:

View File

@ -137,7 +137,12 @@ class Query:
self._aggs[name] = agg
def hist_aggs(
self, name: str, field: str, min_value: Any, max_value: Any, num_bins: int,
self,
name: str,
field: str,
min_value: Any,
max_value: Any,
num_bins: int,
) -> None:
"""
Add histogram agg e.g.

View File

@ -30,7 +30,8 @@ ELASTICSEARCH_HOST = os.environ.get("ELASTICSEARCH_HOST") or "localhost"
TEST_SUITE = os.environ.get("TEST_SUITE", "xpack")
if TEST_SUITE == "xpack":
ES_TEST_CLIENT = Elasticsearch(
ELASTICSEARCH_HOST, http_auth=("elastic", "changeme"),
ELASTICSEARCH_HOST,
http_auth=("elastic", "changeme"),
)
else:
ES_TEST_CLIENT = Elasticsearch(ELASTICSEARCH_HOST)