Spaces:
Running
Running
Moibe
commited on
Commit
路
9d70e15
1
Parent(s):
4b4cc47
Return int not str
Browse files- avaimet.py +2 -0
avaimet.py
CHANGED
@@ -46,6 +46,8 @@ def obtenTokens(sftp, caja):
|
|
46 |
# Decodificar los bytes a Unicode usando la codificaci贸n UTF-8
|
47 |
tokens = contenido_bytes.decode('utf-8')
|
48 |
|
|
|
|
|
49 |
print("Tokens son....: ", tokens)
|
50 |
print("Y su type182 es: ", type(tokens))
|
51 |
time.sleep(8)
|
|
|
46 |
# Decodificar los bytes a Unicode usando la codificaci贸n UTF-8
|
47 |
tokens = contenido_bytes.decode('utf-8')
|
48 |
|
49 |
+
tokens = int(tokens)
|
50 |
+
|
51 |
print("Tokens son....: ", tokens)
|
52 |
print("Y su type182 es: ", type(tokens))
|
53 |
time.sleep(8)
|