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

persamaan kuadrat bilangan kompleks #134

Closed
Tracked by #105
slowy07 opened this issue Oct 31, 2021 · 1 comment
Closed
Tracked by #105

persamaan kuadrat bilangan kompleks #134

slowy07 opened this issue Oct 31, 2021 · 1 comment
Assignees
Labels
enhancement New feature or request

Comments

@slowy07
Copy link
Member

slowy07 commented Oct 31, 2021

  • lakukan perubahan atau penambahan sesuai dari issue
  • menggunakan type hints dan doctstring sebagai contoh dibawah ini
def hitung_diameter_lingkaran(radius: float) -> float:
 """
 menghitung diameter dari sebuah lingkaran
 rumus:
 diameter: 2 * radius
 >>> hitung_diameter_lingkaran(12)
 24.0
 """
 return float(2 * radius)

kemudian disarankan dengant testing lokal dengan menginstall flake8 dan pytest
pytest

pytest . --doctest-modules --ignore=Basic/

atau bisa juga dengan

pytest namafile.py --doctest-modules --ignore=Basic/

flake8

flake8 . --ignore=E203,W503,W504 --max-complexity=25 --max-line-length=88
  • jika sudah maka lakukan pull request
  • usahakan message commitnya mengikuti dari salah satu dibawah ini (contoh)
    • add: menambahkan algoritma sigmoid
    • feat: menambahkan algoritma sigmoid
    • fix: memperbaiki kesalahan pada algoritma sigmoid
  • membaca peraturan dan pedoman kontribusi
@slowy07 slowy07 mentioned this issue Oct 31, 2021
23 tasks
@slowy07 slowy07 self-assigned this Oct 31, 2021
@slowy07 slowy07 added the enhancement New feature or request label Oct 31, 2021
@slowy07
Copy link
Member Author

slowy07 commented Oct 31, 2021

close dari commit persamaan kuadrat bilangan kompleks

@slowy07 slowy07 closed this as completed Oct 31, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant