Skip to content
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
2 changes: 1 addition & 1 deletion .azure-pipelines/templates/azdev_setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ steps:
chmod +x env/bin/activate
. env/bin/activate
python -m pip install -U pip
pip install azdev==0.1.32
pip install azdev
azdev --version

if [ -z "$CLI_EXT_REPO_PATH" ]; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def _set_conout_mode(mode):
def _update_conout_mode(mode):
old_mode = _get_conout_mode()
if old_mode & mode != mode:
mode = old_mode | mode
mode = old_mode | mode # pylint: disable=unsupported-binary-operation
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Temporarily disable the checker due to pylint bug pylint-dev/pylint#4526.

_set_conout_mode(mode)


Expand Down