Spaces:
Running
Running
arvind6599
commited on
Commit
·
5ce1ae0
1
Parent(s):
ffb408c
Removed extra file
Browse files- .gitignore +2 -3
- app.py +3 -3
- hg_secrets.py +0 -33
.gitignore
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
test/
|
2 |
|
3 |
-
|
4 |
-
|
5 |
-
test.py
|
|
|
1 |
test/
|
2 |
|
3 |
+
test.py
|
4 |
+
hg_secrets.py
|
|
app.py
CHANGED
@@ -42,9 +42,9 @@ def get_evaluation_questions():
|
|
42 |
|
43 |
Both lists must be of equal length.
|
44 |
"""
|
45 |
-
questions_str = TEST_QUESTION_1
|
46 |
-
docs_str = TEST_DOCUMENTS_1
|
47 |
-
expected_str = TEST_EXPECTED_1
|
48 |
|
49 |
if not questions_str or not expected_str or not docs_str:
|
50 |
return []
|
|
|
42 |
|
43 |
Both lists must be of equal length.
|
44 |
"""
|
45 |
+
questions_str = os.environ.get("TEST_QUESTION_1")
|
46 |
+
docs_str = os.environ.get("TEST_DOCUMENTS_1")
|
47 |
+
expected_str = os.environ.get("TEST_EXPECTED_1")
|
48 |
|
49 |
if not questions_str or not expected_str or not docs_str:
|
50 |
return []
|
hg_secrets.py
DELETED
@@ -1,33 +0,0 @@
|
|
1 |
-
print(
|
2 |
-
"""
|
3 |
-
This Stock and Asset Purchase Agreement is entered into as of October 28, 2021, among Purolite Corporation, a Delaware corporation, along with Stefan E. Brodie and Don B. Brodie (collectively referred to as the Sellers), and Ecolab Inc., a Delaware corporation, as the Purchaser. Additionally, Gibson, Dunn & Crutcher LLP, as an independent third-party representative, is engaged for specific advisory roles outlined in this Agreement.
|
4 |
-
---
|
5 |
-
This Agreement shall be governed by and construed in accordance with the internal laws of the State of Delaware, without giving effect to any choice or conflict of law provision. Each clause within this Agreement shall be interpreted independently, and the invalidity of one clause shall not affect the enforceability of the remaining provisions. Headings are for convenience only and shall not affect the interpretation of this Agreement. Nothing herein shall be construed as limiting or waiving any rights or obligations under applicable law unless expressly stated.
|
6 |
-
---
|
7 |
-
Such notices, demands, and other communications shall be directed to the Parties at their respective addresses. One Party may be contacted at:
|
8 |
-
1 Ecolab Place
|
9 |
-
St. Paul, Minnesota 55102
|
10 |
-
Attention: General Counsel
|
11 |
-
with a copy (which shall not constitute notice) to:
|
12 |
-
Shearman & Sterling LLP
|
13 |
-
599 Lexington Avenue
|
14 |
-
New York, New York 10022
|
15 |
-
Attention: Adam Miller
|
16 |
-
Another Party may be reached at:
|
17 |
-
Purolite Corporation
|
18 |
-
2201 Renaissance Boulevard
|
19 |
-
King of Prussia, Pennsylvania 19406
|
20 |
-
Attention: Stefan E. Brodie; Howard Brodie
|
21 |
-
with a copy (which shall not constitute notice) to:
|
22 |
-
Cleary Gottlieb Steen & Hamilton LLP
|
23 |
-
One Liberty Plaza
|
24 |
-
New York, New York 10006
|
25 |
-
Attention: John Reynolds; Sarah Lee
|
26 |
-
Additional communications relating to the role of the third-party representative shall be directed to:
|
27 |
-
Gibson, Dunn & Crutcher LLP
|
28 |
-
200 Park Avenue
|
29 |
-
New York, New York 10166
|
30 |
-
Attention: Jane Smith
|
31 |
-
---
|
32 |
-
All references to the singular include the plural and vice versa, and all references to any gender include all genders. The Parties agree that any ambiguities in the language of this Agreement shall not be construed against either Party. Section headings used in this Agreement are for reference only and shall not affect the meaning or interpretation of any provision. "
|
33 |
-
""".split("---"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|