Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translate all Turkish text to English #19

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/create_docker_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
with:
context: .
push: true
tags: ${{secrets.DOCKER_USERNAME}}/herif_bot-auto:latest
tags: ${{secrets.DOCKER_USERNAME}}/fct:${{ github.event.release.tag_name || 'latest' }}
28 changes: 28 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Pylint

on:
push:
branches:
- main
- master
pull_request:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with Pylint
run: |
pylint $(git ls-files '*.py')
1 change: 1 addition & 0 deletions jsons/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
this file is here to not delete this folder from git, as some things may be saved here
9 changes: 0 additions & 9 deletions jsons/responses.json

This file was deleted.

2 changes: 0 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# import token_system first so that logging is setup correctly (ie. cloud logging) before everything else runs
from src.token_system import get_token
from src.client import get_client_instance
from src.commands import setup_commands

token = get_token()
client = get_client_instance()

setup_commands()

client.run(token)
114 changes: 0 additions & 114 deletions src/GPT.py

This file was deleted.

52 changes: 0 additions & 52 deletions src/Helpers/birthday_helpers.py

This file was deleted.

6 changes: 0 additions & 6 deletions src/Helpers/gpt_helpers.py

This file was deleted.

60 changes: 0 additions & 60 deletions src/Helpers/helper_functions.py

This file was deleted.

64 changes: 0 additions & 64 deletions src/Messages.py

This file was deleted.

Loading
Loading