Skip to content

Commit

Permalink
dunno
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Pro committed Sep 23, 2023
1 parent 9ee7a26 commit 66f84b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nayn_bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:

steps:
- uses: actions/checkout@master
- name: Set up Python 3.10
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: "3.10"
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv==2021.5.29
pip install pipenv==2023.9.8
pipenv install --system --dev
- name: Lint
run: make lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv==2021.5.29
pip install pipenv==2023.9.8
pipenv install --system --dev
- name: Lint
run: make lint
Expand Down
1 change: 0 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ init-hook='import sys; sys.path.append("./bot")'

[MESSAGES CONTROL]
disable = global-statement,bare-except,pointless-statement,bad-continuation,duplicate-code,too-few-public-methods,fixme,C0103,missing-module-docstring,missing-class-docstring,missing-function-docstring,unnecessary-pass,too-many-instance-attributes,too-many-arguments,too-many-function-args,unsubscriptable-object,unused-argument
max-line-length = 127

0 comments on commit 66f84b9

Please sign in to comment.