Skip to content

Commit

Permalink
flake8 errors fixed in the new files added in this PR
Browse files Browse the repository at this point in the history
  • Loading branch information
atbagga committed Nov 13, 2024
1 parent 99c7e07 commit 484f6f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion microsoft/testsuites/mdatp/mdatp_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
from lisa.testsuite import TestResult
from lisa.tools import Curl
from lisa.util import LisaException, SkippedException

from microsoft.testsuites.mdatp.mdatp_tools import Mdatp


Expand Down
5 changes: 3 additions & 2 deletions microsoft/testsuites/mdatp/mdatp_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
import json
from typing import Any

from lisa.tools import Chmod
from lisa.base_tools import Wget
from lisa.executable import Tool
from lisa.tools import Chmod


class Mdatp(Tool):
@property
Expand Down Expand Up @@ -90,4 +91,4 @@ def get_result(
result.assert_exit_code(include_output=True)
if json_out:
return json.loads(result.stdout)
return result.stdout.split()
return result.stdout.split()

0 comments on commit 484f6f3

Please sign in to comment.