Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinelliott committed Aug 3, 2024
2 parents c0bc986 + fb0d18b commit de965c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion banner
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@


▄▄ ██ ▄▄▄▄
██ ▀▀ ██▀▀▀
Expand All @@ -7,4 +8,3 @@
██ ██ ██ ▀██▄▄▄▄█ █▄▄▄▄▄██ ██ ██ ▄▄▄██▄▄▄ ██ ██ ██ ▀██▄▄██▀
▀▀ ▀▀ ▀▀ ▀▀▀▀▀ ▀▀▀▀▀▀ ▀▀ ▀▀ ▀▀▀▀▀▀▀▀ ▀▀ ▀▀ ▀▀ ▀▀▀▀


5 changes: 5 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import asyncio
import datetime
import json
from zoneinfo import ZoneInfo
import os
import discord
Expand All @@ -27,6 +28,10 @@ async def main():
banner = open('banner', 'r').read()
print(banner)

version = json.loads(open('version.json', 'r').read())
print(f"Version: {version['version']} (git sha: {version['git_sha']})")
print()

if not os.path.exists(config['paths']['output']):
os.makedirs(config['paths']['output'])
if not os.path.exists(config['paths']['data']):
Expand Down

0 comments on commit de965c9

Please sign in to comment.