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

remove some six usage #2224

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Commits on May 3, 2024

  1. remove some six usage

    grep 'six.iteritems(self.openapi_types)' -rl | while read f
    do
        sed -i 's|six.iteritems(self.openapi_types)|self.openapi_types.items()|' $f
    done
    
    pyflakes3 . | grep "'six' imported but unused" | cut -d: -f1 | while read f
    do
        sed -i '/^import six$/d' $f
    done
    a-detiste committed May 3, 2024
    Configuration menu
    Copy the full SHA
    bb6bcf1 View commit details
    Browse the repository at this point in the history