Skip to content

Commit

Permalink
change back the api
Browse files Browse the repository at this point in the history
  • Loading branch information
angles-n-daemons committed Nov 23, 2020
1 parent 40ed72c commit 0c694de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clients/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ from my_library import can_user_have_free_coffee

scrutinize = ScrutinizeClient('https://scrutinize-location')
give_free_coffee = await scrutinize.call(
experiment='eng.give_user_free_coffee',
experiment_name='eng.give_user_free_coffee',
user_id='wilma_rudolph',
control=False,
experiment=lambda: can_user_have_free_coffee('wilma_rudolph'),
Expand Down
2 changes: 1 addition & 1 deletion clients/python/scrutinize/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(

async def call(
self,
experiment: str,
experiment_name: str,
user_id: str,
control: Callable,
experiment: Callable,
Expand Down
2 changes: 1 addition & 1 deletion clients/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='scrutinize',
version='0.0.2',
version='0.0.3',
description='the lightweight experimentation platform',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 0c694de

Please sign in to comment.