Skip to content

Commit

Permalink
pylint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
narrieta committed Jan 20, 2023
1 parent 9f918ec commit 0a5514d
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions tests_e2e/scenarios/testsuites/agent_junit.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,20 @@
# 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.
#
from dataclasses import dataclass
from typing import Type

from dataclasses_json import dataclass_json
from typing import Type

from lisa.notifiers.junit import JUnit
from lisa import schema
from lisa.messages import (
#
# Disable those warnings, since 'lisa' is an external, non-standard, dependency
# E0401: Unable to import 'dataclasses_json' (import-error)
# E0401: Unable to import 'lisa.notifiers.junit' (import-error)
# E0401: Unable to import 'lisa' (import-error)
# E0401: Unable to import 'lisa.messages' (import-error)
from dataclasses import dataclass # pylint: disable=E0401
from dataclasses_json import dataclass_json # pylint: disable=E0401
from lisa.notifiers.junit import JUnit # pylint: disable=E0401
from lisa import schema # pylint: disable=E0401
from lisa.messages import ( # pylint: disable=E0401
MessageBase,
TestResultMessage,
)
Expand Down

0 comments on commit 0a5514d

Please sign in to comment.