Skip to content

Commit 5244e96

Browse files
committed
Fix reformatted functions names
1 parent 2bb4c52 commit 5244e96

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyrogram/session/auth.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def create(self):
125125
# Step 5. TODO: Handle "server_DH_params_fail". Code assumes response is ok
126126
log.debug("Send req_DH_params")
127127
server_dh_params = self.send(
128-
functions.ReqDhParams(
128+
functions.ReqDHParams(
129129
nonce,
130130
server_nonce,
131131
int.to_bytes(p, 4, "big"),
@@ -171,7 +171,7 @@ def create(self):
171171

172172
retry_id = 0
173173

174-
data = types.ClientDhInnerData(
174+
data = types.ClientDHInnerData(
175175
nonce,
176176
server_nonce,
177177
retry_id,
@@ -185,7 +185,7 @@ def create(self):
185185

186186
log.debug("Send set_client_DH_params")
187187
set_client_dh_params_answer = self.send(
188-
functions.SetClientDhParams(
188+
functions.SetClientDHParams(
189189
nonce,
190190
server_nonce,
191191
encrypted_data

0 commit comments

Comments
 (0)