Skip to content
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

Check for trailing comma tuple #1038

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ disable=print-statement,
E1120,
R0904,
R0916,
R1707,
R1722,
W0104,
W0105,
Expand Down
2 changes: 1 addition & 1 deletion esrally/metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def extract_user_tags_from_string(user_tags):


class SampleType(IntEnum):
Warmup = 0,
Warmup = 0
Normal = 1


Expand Down
4 changes: 2 additions & 2 deletions esrally/track/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,8 +425,8 @@ class IndexIdConflict(Enum):

Note that this assumes that each document in the benchmark corpus has an id between [1, size_of(corpus)]
"""
NoConflicts = 0,
SequentialConflicts = 1,
NoConflicts = 0
SequentialConflicts = 1
RandomConflicts = 2


Expand Down