-
| Title says it all. CI is complaining about “improperly ordered imports” but I don’t get those warnings when running  | 
Beta Was this translation helpful? Give feedback.
      
      
          Answered by
          
            nickjj
          
      
      
        Feb 2, 2024 
      
    
    Replies: 1 comment 1 reply
-
| Hmm, try running  It sounds like you'd want to run  | 
Beta Was this translation helpful? Give feedback.
                  
                    1 reply
                  
                
            
      Answer selected by
        SHxKM
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
Hmm, try running
./run qualitywhich runs a combo of lint (flake8), format (black) and format:imports (isort).It sounds like you'd want to run
./run format:importsto detect it locally. I just happen to run quality in my day to day because it does all 3 in 1 shot.