Skip to content

Commit

Permalink
fix: minor fixes in files
Browse files Browse the repository at this point in the history
  • Loading branch information
lilpuzeen committed Jan 16, 2024
1 parent 6a7cfee commit f1f897a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py') --max-line-length=121 --ignore-docstrings=True --disable=C0116 --disable=E0401 --disable=C0114
pylint $(git ls-files '*.py') --max-line-length=121 --ignore-docstrings=True --disable=C0116 --disable=E0401 --disable=C0114 --disable=R0913 --disable=R0914
2 changes: 1 addition & 1 deletion functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


# Definition of a system of differential equations
def system(y, t, a, b, c, d):
def system(y, a, b, c, d):
y1, y2 = y
dy1_dt = a * y1 + b * y2
dy2_dt = c * y1 + d * y2
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from functions import *
from functions import conduct_experiment

# Experimental parameters
experiment_params = [
Expand Down

0 comments on commit f1f897a

Please sign in to comment.