Giter VIP home page Giter VIP logo

Comments (4)

christian-oreilly avatar christian-oreilly commented on July 18, 2024

I'll have a look at this. Let's add to this issue the integration into the CI of some linting validation at the same time. We can probably re-use directly the yaml file from the PyLossless project for that:

name: PEP8 Compliance, Spellcheck, & Docstring

on: pull_request

jobs:
  linting:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - name: Set up Python 3.x
      uses: actions/setup-python@v4
      with:
        python-version: "3.x"
    - name: Install dependencies
      run: pip install -r requirements_testing.txt
    - name: Run flake8
      run: flake8 pylossless docs --exclude pylossless/__init__.py
    - name: Run Codespell
      run: codespell pylossless docs --skip docs/source/generated
    - name: Check Numpy Format Docstring
      run: pydocstyle pylossless

from ipyniivue.

christian-oreilly avatar christian-oreilly commented on July 18, 2024

Just seen there is some linting done in build.yml. I'll look it up and integrate any addition step that could be useful.

from ipyniivue.

christian-oreilly avatar christian-oreilly commented on July 18, 2024

I'll note some issues here as I see them. I'll correct them as I see them and may end up merging these corrections through different PRs.

First note: mutable objects should never be given as default values. It can cause side effects that are very hard to detect.

For example, form nvmesh.py

class NVMesh:
    #gl variable skipped because python
    def __init__(self, input_dict={}, **kwargs):
        kwargs.update(input_dict)

This would be better replaced with
For example, form nvmesh.py

class NVMesh:
    #gl variable skipped because python
    def __init__(self, input_dict=None, **kwargs):
        if input_dict is None:
            input_dict = {}
        kwargs.update(input_dict)

Why is it nasty?
image

What the hell, right? :)

from ipyniivue.

christian-oreilly avatar christian-oreilly commented on July 18, 2024

Second note: This is not a Python thing specifically, but if-elif without else can be somewhat dangerous, depending on the context. An example of that is the add_volume method in niivue.py. I was calling it with a Path object, and it was failing silently, just doing nothing. In this function, there is a block of code with an if-elif statement that processes the different types... but no else clause. So, this function was failing silently leaving the user puzzled about what was happening. The correct thing to do here is to add an else block with a raise TypeError("The argument volume of blablabla accepts only arguments of types blablabla")... I'll fix this one in my PR for issue #23 if I ever manage to get this working.

from ipyniivue.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.