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

added import comments #152

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bowler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
except ImportError:
__version__ = "dev"

#importing libraries
from .imr import FunctionArgument, FunctionSpec
from .query import Query
from .tool import BowlerTool
Expand Down
1 change: 1 addition & 0 deletions bowler/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

#importing libraries
import sys

from .main import main
Expand Down
1 change: 1 addition & 0 deletions bowler/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

#importing libraries
import logging
from typing import List, Optional, Sequence, Union

Expand Down
1 change: 1 addition & 0 deletions bowler/imr.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

#importing libraries
import logging
from typing import Any, List, Optional

Expand Down
1 change: 1 addition & 0 deletions bowler/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

#importing libraries
import importlib
import importlib.util
import logging
Expand Down
1 change: 1 addition & 0 deletions bowler/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

#importing libraries
import inspect
import logging
import pathlib
Expand Down
1 change: 1 addition & 0 deletions bowler/tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

#importing libraries
import difflib
import logging
import multiprocessing
Expand Down
1 change: 1 addition & 0 deletions bowler/type_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
syntax like `range(float(...))` or `"%d" % (float(...),)`.
"""

#importing libraries
import enum
from typing import Dict, Sequence, Union

Expand Down
1 change: 1 addition & 0 deletions bowler/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

#importing libraries
from typing import Any, Callable, Dict, List, NewType, Optional, Type, Union

from attr import Factory, dataclass
Expand Down