Skip to content

Commit

Permalink
fixed bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
new92 committed Mar 7, 2024
1 parent 851d105 commit 14616ac
Showing 1 changed file with 10 additions and 33 deletions.
43 changes: 10 additions & 33 deletions IAM.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def GetID(username: str) -> int:
return loader.check_profile_id(username)

def checkID(id: int) -> bool:
return id == None or len(id) < 3
return not id or len(id) < 3

TABLE = [
[
Expand All @@ -339,39 +339,14 @@ def checkID(id: int) -> bool:
]
]

console = Console()
table = Table(show_footer=False)
centered = Align.center(table)

TaggedUsers=[]
Location=[]
Locations=[]
REC=[]
LOCATIONS=[]
LINKS=[]
IDS=[]
HASHTAGS=[]
FUFERS=[]
FUFING=[]
LTAGS=[]
LBU=[]
MSGIDS=[]
FILEIDS=[]
PHOTOIDS=[]
VIDEOIDS=[]
LBL=[]
BLOCKU=[]
REPLS=[]
STIDS=[]
STBTGS=[]
GTST=[]
HASHVID=[]
LOCLIKE=[]
random = None
sktp = None
TaggedUsers, Location, Locations, REC, LOCATIONS, LINKS, IDS, HASHTAGS, FUFERS, FUFING, LTAGS, LBU, MSGIDS, FILEIDS, PHOTOIDS, VIDEOIDS, LBL, BLOCKU, REPLS, STIDS, STBTGS, GTST, HASHVID, LOCLIKE = [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []
random, sktp = None, None
count = 0

def main():
console = Console()
table = Table(show_footer=False)
centered = Align.center(table)
print(banner())
print(f"\n")
print(f"{yellow}[+] IAM: Instagram Account Manager")
Expand Down Expand Up @@ -571,7 +546,7 @@ def main():
except Exception as ex:
Except(ex)

elif option == 999:
if option == 999:
clear()
ScriptInfo()

Expand Down Expand Up @@ -3361,4 +3336,6 @@ def main():
exit(0)

if __name__ == '__main__':
main()
sleep(2)
clear()
main()

0 comments on commit 14616ac

Please sign in to comment.