Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix lint
Browse files Browse the repository at this point in the history
jalencato committed Oct 17, 2023
1 parent bdca6a7 commit 51989fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/graphstorm/gconstruct/transform.py
Original file line number Diff line number Diff line change
@@ -1014,15 +1014,15 @@ def parse_feat_ops(confs):
assert 'range' in conf, \
"It is required to provide range information for bucket feature transform"
bucket_cnt = conf['bucket_cnt']
range = conf['range']
bucket_range = conf['range']
if 'slide_window_size' in conf:
slide_window_size = conf['slide_window_size']
else:
slide_window_size = 0
transform = BucketTransform(feat['feature_col'],
feat_name,
bucket_cnt=bucket_cnt,
bucket_range=range,
bucket_range=bucket_range,
slide_window_size=slide_window_size,
out_dtype=out_dtype)
else:

0 comments on commit 51989fc

Please sign in to comment.