Skip to content

Commit 35cb5a0

Browse files
- Fixed python ternary.
1 parent da6d4af commit 35cb5a0

File tree

1 file changed

+1
-1
lines changed
  • test/python/stackql_test_tooling/flask/gcp

1 file changed

+1
-1
lines changed

test/python/stackql_test_tooling/flask/gcp/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
app = Flask(__name__)
88

9-
_IS_DOCKER = True is os.getenv('IS_DOCKER', 'false').lower() == 'true'
9+
_IS_DOCKER = True if os.getenv('IS_DOCKER', 'false').lower() == 'true' else False
1010

1111
# Configure logging
1212
logging.basicConfig(level=logging.INFO, format="%(asctime)s - %(name)s - %(levelname)s - %(message)s")

0 commit comments

Comments
 (0)