diff --git a/launch.py b/launch.py
index 3ca49f3698204ffe3d17f9ed27220e0a18bf0a1f..2d90f681ef988f61885518098266d62aeb2ba15f 100644
--- a/launch.py
+++ b/launch.py
@@ -10,8 +10,8 @@ TOKEN = os.getenv('DISCORD_TOKEN')
 SECRET = os.getenv('REDDIT_SECRET')
 
 subreddit = praw.Reddit(client_id='yvXh2hrDELw6eg', \
-                     client_secret=SECRET, \
-                     user_agent='KumikoBot').subreddit('rarekumikos')
+                        client_secret=SECRET, \
+                        user_agent='KumikoBot').subreddit('rarekumikos')
 hot_subreddit = subreddit.hot(limit=500)
 
 totalimgs = 0
@@ -19,36 +19,36 @@ posts = []
 authors = []
 posturls = []
 def refresh_posts():
-	print('Refreshing posts!')
-	posts.clear()
-	authors.clear()
-	posturls.clear()
-	global totalimgs
-	totalimgs=0
-	i=0
-	for submission in subreddit.hot(limit=500):
-		#_ = os.system('clear')
-		i = i + 1
-		totalimgs = totalimgs + 1
-		print('Getting submission number '+ str(i) +' / 500!')
-		if ".jpg" not in submission.url and ".png" not in submission.url:
-			print('Post is not a jpg or png --------------------------')
-			print(str(submission.url))
-			totalimgs = totalimgs - 1
-			continue
-		posts.append(submission.url)
-		authors.append(submission.author)
-		posturls.append(submission.permalink)
-	print('Total amount of images: '+str(totalimgs))
+    print('Refreshing posts!')
+    posts.clear()
+    authors.clear()
+    posturls.clear()
+    global totalimgs
+    totalimgs=0
+    i=0
+    for submission in subreddit.hot(limit=500):
+        #_ = os.system('clear')
+        i = i + 1
+        totalimgs = totalimgs + 1
+        print('Getting submission number '+ str(i) +' / 500!')
+        if ".jpg" not in submission.url and ".png" not in submission.url:
+            print('Post is not a jpg or png --------------------------')
+            print(str(submission.url))
+            totalimgs = totalimgs - 1
+            continue
+        posts.append(submission.url)
+        authors.append(submission.author)
+        posturls.append(submission.permalink)
+    print('Total amount of images: '+str(totalimgs))
 
 
 def create_embed(post,author,posturl):
-	embed = discord.Embed(
-		color = discord.Colour.dark_orange()
-		)
-	embed.set_image(url=post)
-	embed.description ='['+str(author)+'](https://www.reddit.com'+str(posturl)+')'
-	return embed
+    embed = discord.Embed(
+        color = discord.Colour.dark_orange()
+        )
+    embed.set_image(url=post)
+    embed.description ='['+str(author)+'](https://www.reddit.com'+str(posturl)+')'
+    return embed
 
 refresh_posts()
 
@@ -56,17 +56,17 @@ client = discord.Client()
 
 @client.event
 async def on_ready():
-	print(f'{client.user} has connected to Discord!')
+    print(f'{client.user} has connected to Discord!')
 
 @client.event
 async def on_message(message):
-	if message.author == client.user:
-		return
-	if "showmeakumiko" in message.content.lower().replace(' ',''):
-		postnumber = random.randint(1,totalimgs)
-		await message.channel.send(embed = create_embed(posts[postnumber],authors[postnumber],posturls[postnumber]))
+    if message.author == client.user:
+        return
+    if "showmeakumiko" in message.content.lower().replace(' ',''):
+        postnumber = random.randint(1,totalimgs)
+        await message.channel.send(embed = create_embed(posts[postnumber],authors[postnumber],posturls[postnumber]))
 
-	if "refresh the kumikos" in message.content.lower():
-		refresh_posts()
+    if "refresh the kumikos" in message.content.lower():
+        refresh_posts()
 
-client.run(TOKEN)
\ No newline at end of file
+client.run(TOKEN)