GithubHelp home page GithubHelp logo

externaltools's Introduction

Hi, I'm Noah!

I love programming! I like all sorts of languages. Love collaborating on stuff!
  • ๐Ÿ”ญ Iโ€™m currently working on open source software

  • ๐ŸŒฑ Iโ€™m currently learning React

  • ๐Ÿ‘ฏ Iโ€™m looking to collaborate on just about anything!

  • ๐Ÿค Iโ€™m looking for help with Rust

  • ๐Ÿ’ฌ Ask me about Python

  • ๐Ÿ“ซ How to reach me: [email protected]

I have so many project ideas and so little time to work on them.

Connect with me:

12442137

noahbroyles

externaltools's People

Contributors

noahbroyles avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

externaltools's Issues

`orderPythonImports` doesn't properly handle multiple imports in one `from` stmt

Let's say I have this file:

import asyncio
from json.decoder import JSONDecodeError
import json
from concurrent.futures import Executor, ThreadPoolExecutor, ProcessPoolExecutor
from contextlib import contextmanager
from datetime import datetime
from enum import Enum
import io
from multiprocessing import Manager, freeze_support
import os
from pathlib import Path
from pathspec.patterns.gitwildmatch import GitWildMatchPatternError
import re
import signal
import sys
import tokenize
import traceback
from typing import (
    Any,
    Dict,
    Generator,
    Iterator,
    List,
    MutableMapping,
    Optional,
    Pattern,
    Sequence,
    Set,
    Sized,
    Tuple,
    Union,
)

If I run orderPythonImports on it, it changes to this:

import io
import os
import re
import sys
import json
import signal
import asyncio
import tokenize
import traceback

from typing import (  # See, there's a bit of a problem here
from enum import Enum
from pathlib import Path
from datetime import datetime
from contextlib import contextmanager
from json.decoder import JSONDecodeError
from multiprocessing import Manager, freeze_support
from pathspec.patterns.gitwildmatch import GitWildMatchPatternError
from concurrent.futures import Executor, ThreadPoolExecutor, ProcessPoolExecutor
    Any,
    Dict,
    Generator,
    Iterator,
    List,
    MutableMapping,
    Optional,
    Pattern,
    Sequence,
    Set,
    Sized,
    Tuple,
    Union,
)

The from import tuple was totally slaughtered. Please fix this!

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.