Fix flake8 error: H104

Fix flak8 error :H104

Change-Id: I05f26a3c10039b1ef85c7aca993f72e6c4ae65d8
This commit is contained in:
Cai Hui 2021-11-06 10:13:21 +08:00
parent 129e9cf2bb
commit d081823079
2 changed files with 5 additions and 1 deletions

View File

@ -11,3 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
def test_utils_todo():
pass

View File

@ -63,7 +63,7 @@ commands = pylint --rcfile .pylintrc freezerclient
# H202 -> assertRaises(Exception, ...) too broad
# H404 -> Multi line docstrings should start without a leading new line.
# H405 -> Multi line docstrings should start with a one line summary followed by an empty line.
ignore = H104,H202,H404,H405
ignore = H202,H404,H405
# H106: Dont put vim configuration in source files
# H203: Use assertIs(Not)None to check for None
enable-extensions=H106,H203