Skip to content

Commit 6f5d69b

Browse files
authored
Fix syntax error caused by resolving merge conflicts
1 parent 3c4ec8b commit 6f5d69b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/secretshare/mpce.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __init__(self, protocol: str = "shamirs", prime: int = 180252380737439):
3737
self.mongo_host = os.environ.get("MONGO_HOST")
3838
self.mongo_port = os.environ.get("MONGO_PORT")
3939
self.mongo_user = urllib.parse.quote_plus(os.environ.get("MONGO_USER", "bwwc"))
40-
self.mongo_password = urllib.parse.quote_plus(os.environ.get("MONGO_PASSWORD")
40+
self.mongo_password = urllib.parse.quote_plus(os.environ.get("MONGO_PASSWORD"))
4141
self.mongo_db = os.environ.get("MONGO_DB", "bwwc")
4242
self.mongo_params = os.environ.get("MONGO_PARAMS", "")
4343
mongo_uri = f"mongodb://{self.mongo_user}:{self.mongo_password}@{self.mongo_host}:{self.mongo_port}/?{self.mongo_params}"

0 commit comments

Comments
 (0)