Nurdan A
Nurdan A
After running `cabal init` I tried adding `haskelldb` to `.cabal` file, e.g. ``` build-depends: base, haskelldb ``` But cannot `cabal build` ``` $ cabal build | tail Error: cabal: Failed...
I have the following Python code ``` # sample.py from time import sleep def foo(): ... def main(): while True: with open("sample.py") as f: content = f.read() print("fooo") foo() sleep(3)...
**Describe the feature** Terraform [plan](https://developer.hashicorp.com/terraform/internals/json-format) provides `variables` key which currently cannot read from `BaseResourceCheck.scan_resource_conf` **Examples** ``` { "format_version": "1.0", "terraform_version": "1.0.0", "variables": { "account": { "value": "dev" } }, ......