Posts by user138329 • 86 points
1 post
-
7
votes3
answers144
viewsA: Is there any way to pass the parameters to a constant function?
You could declare your variables on a list, and then use * to pass each item as an argument CONFIG = ('localhost', 8086, 'root', 'root', 'example') InfluxDBClient(*CONFIG) You could create a…