Skip to content

Commit

Permalink
Update Google Analytics tag
Browse files Browse the repository at this point in the history
Update to Python 3.11 from 3.7 (!!!)
  • Loading branch information
ZeroCool2u committed Jun 17, 2023
1 parent 5545b27 commit 4da9c04
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions app.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import logging
import os
from datetime import datetime as dt

import dash
import dash_core_components as dcc
import dash_html_components as html
import logging
import os
import phonenumbers
from dash.dependencies import Input, Output, State
from dash.exceptions import PreventUpdate
from datetime import datetime as dt
from google.cloud import firestore
from google.cloud import tasks as gtasks
from google.cloud.exceptions import NotFound
Expand Down Expand Up @@ -60,14 +59,15 @@ def gcp_support() -> dict:
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-137904877-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-137904877-1');
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9C1SZ59XE4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9C1SZ59XE4');
</script>
{%metas%}
<title>Thems Facts</title>
{%favicon%}
Expand Down
2 changes: 1 addition & 1 deletion front_end_app.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
runtime: python37
runtime: python311
instance_class: F2
entrypoint: gunicorn -w 3 app:server
service: default
Expand Down

0 comments on commit 4da9c04

Please sign in to comment.