E5D8 Comparing kubernetes-client:master...a-detiste:master · kubernetes-client/python · GitHub
[go: up one dir, main page]

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kubernetes-client/python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: a-detiste/python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Tags
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 564 files changed
  • 1 contributor

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
Loading
0