Skip to content

Commit

Permalink
Merge branch 'master' into fix/hdf5
Browse files Browse the repository at this point in the history
  • Loading branch information
astafan8 authored Feb 11, 2019
2 parents 69d99b5 + 67d0c83 commit ff16f88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qcodes/logger/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def get_level_code(level: Union[str, int]) -> int:
# bug:
# >>> import logging
# >>> print(logging.getLevelName('DEBUG'))
return logging.getLevelName(level) # type: ignore
return logging.getLevelName(level)
else:
raise RuntimeError('get_level_code: '
f'Cannot to convert level {level} of type '
Expand Down
2 changes: 1 addition & 1 deletion test_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pytest-cov
pytest
codacy-coverage
hypothesis!=3.69.11 # due to bug in log capture
mypy>=0.630
mypy==0.670
git+https://github.com/QCoDeS/pyvisa-sim.git
lxml
codecov
Expand Down

0 comments on commit ff16f88

Please sign in to comment.