Skip to content

Commit

Permalink
dropped log level of import sklearn warning to info
Browse files Browse the repository at this point in the history
  • Loading branch information
jpswinski committed Aug 5, 2023
1 parent c3db209 commit aa2b639
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clients/python/sliderule/sliderule.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
from sklearn.cluster import KMeans
clustering_enabled = True
except:
logger.warning("Unable to import sklearn... clustering support disabled")
logger.info("Unable to import sklearn... clustering support disabled")

recdef_table = {}

Expand Down
2 changes: 1 addition & 1 deletion clients/python/tests/data/logancha.geojson
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"features": [ {
"type": "Feature",
"properties": { },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 95.48333333333333, 65.96666666666667 ], [ 95.48333333333333, 65.06666666666666 ], [ 96.38333333333334, 65.06666666666666 ], [ 96.38333333333334, 65.96666666666667 ], [ 95.48333333333333, 65.96666666666667 ] ] ] }
"geometry": { "type": "Polygon", "coordinates": [ [ [ 95.484, 65.967 ], [ 95.484, 65.066 ], [ 96.383, 65.066 ], [ 96.383, 65.967 ], [ 95.484, 65.967 ] ] ] }
} ]
}

0 comments on commit aa2b639

Please sign in to comment.