Skip to content

Commit 05d1610

Browse files
committed
int
1 parent c9bf73a commit 05d1610

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/test_mt5_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
success = False
2626
for attempt in range(10):
2727
if mt5.initialize(
28-
login=os.getenv("MT5_LOGIN"),
28+
login=int(os.getenv("MT5_LOGIN")), # type: ignore[arg-type]
2929
password=os.getenv("MT5_PASSWORD"),
3030
server=os.getenv("MT5_SERVER"),
3131
path=os.getenv("MT5_PATH"),

0 commit comments

Comments
 (0)