Skip to content

Commit 024e328

Browse files
committed
Remove unneeded file
1 parent b64d661 commit 024e328

File tree

2 files changed

+2
-25
lines changed

2 files changed

+2
-25
lines changed

compiler/api/compiler.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,8 @@ def start():
172172

173173
with open("{}/source/auth_key.tl".format(HOME), encoding="utf-8") as auth, \
174174
open("{}/source/sys_msgs.tl".format(HOME), encoding="utf-8") as system, \
175-
open("{}/source/main_api.tl".format(HOME), encoding="utf-8") as api, \
176-
open("{}/source/pyrogram.tl".format(HOME), encoding="utf-8") as pyrogram:
177-
schema = (auth.read() + system.read() + api.read() + pyrogram.read()).splitlines()
175+
open("{}/source/main_api.tl".format(HOME), encoding="utf-8") as api:
176+
schema = (auth.read() + system.read() + api.read()).splitlines()
178177

179178
with open("{}/template/mtproto.txt".format(HOME), encoding="utf-8") as f:
180179
mtproto_template = f.read()

compiler/api/source/pyrogram.tl

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)