-
Notifications
You must be signed in to change notification settings - Fork 13
SCRIPTEXECUTE support #68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 20 commits
6f22fa6
2e4bca1
6cf5bc5
ef3d224
34c46b5
e5893e2
3ca1c7e
1161cb7
aa8cff9
044fa97
24e0fef
d71fe62
b9b31e3
fbc5cda
db860f6
a313a28
5bf1426
d798fb7
0056bc3
d17b278
cabbdc3
1f5011b
4a2b3a0
a2e4b65
24537c8
53b1106
2a60e57
6ea2a9f
569604e
918766e
7866203
300db9d
b59152e
12ad6bd
9a6344a
b8e77b9
964d8ba
f17dab0
c14248b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| from .client import Client | ||
| from .client import Client # noqa | ||
|
|
||
| __version__ = "1.0.2" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,11 @@ | ||
| from functools import partial | ||
| from typing import Any, AnyStr, List, Sequence, Union | ||
| from typing import AnyStr, Union, Sequence, Any, List | ||
|
|
||
| import numpy as np | ||
|
|
||
| from redisai import command_builder as builder | ||
| from redisai.postprocessor import Processor | ||
| from redisai import command_builder as builder | ||
|
|
||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why the changes here?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think it's mine :0
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above :)
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see here some functions that use |
||
|
|
||
| processor = Processor() | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,14 @@ | ||
| import warnings | ||
| from functools import partial | ||
| from typing import AnyStr, Sequence, Union | ||
| from typing import AnyStr, Union, Sequence | ||
|
AvitalFineRedis marked this conversation as resolved.
Outdated
|
||
|
|
||
| import numpy as np | ||
| import redis | ||
|
|
||
| from redisai import command_builder as builder | ||
| import redis | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why there is a diff here?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| from redisai.postprocessor import Processor | ||
|
|
||
|
|
||
| processor = Processor() | ||
|
|
||
|
|
||
|
|
||
This file was deleted.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.