Merge pull request #131 from tyll/lgtm

Add LGTM check
This commit is contained in:
Till Maas 2019-10-21 14:47:04 +02:00 committed by GitHub
commit 3b010da9de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -3,6 +3,7 @@ linux-system-roles/network
[![Coverage Status](https://coveralls.io/repos/github/linux-system-roles/network/badge.svg)](https://coveralls.io/github/linux-system-roles/network)
[![Travis Build Status](https://travis-ci.org/linux-system-roles/network.svg?branch=master)](https://travis-ci.org/linux-system-roles/network)
[![Code Style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/linux-system-roles/network.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/linux-system-roles/network/context:python)
Overview
--------

View file

@ -1373,7 +1373,7 @@ class NMUtil:
###############################################################################
class RunEnvironment:
class RunEnvironment(object):
def __init__(self):
self._check_mode = None
@ -1538,7 +1538,7 @@ class RunEnvironmentAnsible(RunEnvironment):
###############################################################################
class Cmd:
class Cmd(object):
def __init__(
self,
run_env,