IliaLarchenko commited on
Commit
d384e2a
1 Parent(s): cd76cb4

minor format fixes

Browse files
Files changed (2) hide show
  1. docs/privacy.html +1 -1
  2. src/app.py +6 -5
docs/privacy.html CHANGED
@@ -49,4 +49,4 @@
49
 
50
  <p>Our Privacy Policy was created with the help of the <a href="https://www.generateprivacypolicy.com">Privacy Policy Generator</a>.</p>
51
  </body>
52
- </html>
 
49
 
50
  <p>Our Privacy Policy was created with the help of the <a href="https://www.generateprivacypolicy.com">Privacy Policy Generator</a>.</p>
51
  </body>
52
+ </html>
src/app.py CHANGED
@@ -93,13 +93,14 @@ def main():
93
 
94
  # adding google analytics pixel
95
  # only when deployed online. don't collect statistics of local usage
96
- if 'GA' in os.environ:
97
- st.image(os.environ['GA'])
98
  st.markdown(
99
  (
100
- "[Privacy policy]"
101
- ("(https://raw.githubusercontent.com/IliaLarchenko/albumentations-demo/" +
102
- "deploy/docs/privacy.html)")
 
103
  )
104
  )
105
 
 
93
 
94
  # adding google analytics pixel
95
  # only when deployed online. don't collect statistics of local usage
96
+ if "GA" in os.environ:
97
+ st.image(os.environ["GA"])
98
  st.markdown(
99
  (
100
+ "[Privacy policy]"(
101
+ "(https://raw.githubusercontent.com/IliaLarchenko/albumentations-demo/"
102
+ + "deploy/docs/privacy.html)"
103
+ )
104
  )
105
  )
106