fix flake8

master
jerger 1 year ago
parent 0abb2370e4
commit c1c25a016f

@ -16,21 +16,21 @@ flake8:
stage: lint stage: lint
allow_failure: true allow_failure: true
script: script:
- flake8 --max-line-length=120 --count --select=E9,F63,F7,F82 --show-source --statistics python_terraform/*.py - flake8 --max-line-length=120 --count --select=E9,F63,F7,F82 --show-source --statistics dda_python_terraform/*.py
- flake8 --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics python_terraform/*.py - flake8 --count --exit-zero --max-complexity=13 --max-line-length=127 --statistics --ignore F401 dda_python_terraform/*.py
mypy: mypy:
stage: lint stage: lint
allow_failure: true allow_failure: true
script: script:
- python -m mypy python_terraform/terraform.py - python -m mypy dda_python_terraform/terraform.py
- python -m mypy python_terraform/tfstate.py - python -m mypy dda_python_terraform/tfstate.py
pylint: pylint:
stage: lint stage: lint
allow_failure: true allow_failure: true
script: script:
- pylint -d C0301 python_terraform/*.py - pylint -d C0301 dda_python_terraform/*.py
test-0.13.7: test-0.13.7:

@ -453,7 +453,7 @@ class Terraform:
filter( filter(
lambda workspace: len(workspace) > 0, lambda workspace: len(workspace) > 0,
map( map(
lambda workspace: workspace.strip('*').strip(), lambda workspace: workspace.strip('*').strip(),
(self.cmd(global_opts, "workspace", "list")[1] or '').split() (self.cmd(global_opts, "workspace", "list")[1] or '').split()
) )
) )
@ -545,7 +545,6 @@ class Terraform:
return wrapper return wrapper
class VariableFiles: class VariableFiles:
def __init__(self): def __init__(self):
self.files = [] self.files = []

Loading…
Cancel
Save