Git Product home page Git Product logo

Comments (3)

jimmylai avatar jimmylai commented on June 15, 2024

The logic here caused the issue.

# Remove the import if it's a candidate to remove with no references or
# multiple assignments.
return not (references_count == 0 or assignments_count > 1)

It removes imports when multiple import assignments are found. Not sure why it's implemented like this initially but it's not safe to do this. Especially the try: import ... except: import ... is a common pattern in Python code.

The easiest way to fix it is to fix the logic in _is_in_use.

from libcst.

jimmylai avatar jimmylai commented on June 15, 2024

Now this is fixed. @zsol, would you like to add your remove unused import VisitorBasedCodemodCommand implementation? Then we can make it available in the next LibCST release. With that, everyone can use the CLI to run it over any repository: python3 -m libcst.tool codemod ...

from libcst.

zsol avatar zsol commented on June 15, 2024

Will do!

from libcst.

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.