-
-
Notifications
You must be signed in to change notification settings - Fork 309
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
init: Fix F401 Linter Warnings by Replacing Wildcard Imports with Exp…
…licit Imports in __init__.py (#4647) * fixed F401 in app * experimental update * update * fixed * removed comment * removed duplicates * added Popen * fix setup * fixed * Remove fixed F401 and F403 from .flake8 exclusions --------- Co-authored-by: Edouard Choinière <[email protected]>
- Loading branch information
1 parent
d558406
commit 602118a
Showing
5 changed files
with
232 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,17 @@ | ||
from .data import * | ||
from .data import ( | ||
get_possible_database_path, | ||
create_database_directory, | ||
create_startup_location_in_grassdb, | ||
ensure_default_data_hierarchy, | ||
MapsetLockingException, | ||
lock_mapset, | ||
) | ||
|
||
__all__ = [ | ||
"MapsetLockingException", | ||
"create_database_directory", | ||
"create_startup_location_in_grassdb", | ||
"ensure_default_data_hierarchy", | ||
"get_possible_database_path", | ||
"lock_mapset", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
"""Experimental code, all can change""" | ||
|
||
from .create import * | ||
from .mapset import * | ||
from .create import require_create_ensure_mapset, create_temporary_mapset | ||
from .mapset import MapsetSession, TemporaryMapsetSession | ||
|
||
__all__ = [ | ||
"MapsetSession", | ||
"TemporaryMapsetSession", | ||
"create_temporary_mapset", | ||
"require_create_ensure_mapset", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,207 @@ | ||
"""Python interface to launch GRASS GIS modules in scripts | ||
""" | ||
|
||
from .core import * | ||
from .db import * | ||
from .raster import * | ||
from .raster3d import * | ||
from .vector import * | ||
from .utils import * | ||
from . import setup # noqa: F401 | ||
from . import setup | ||
from .core import ( | ||
PIPE, | ||
Popen, | ||
call, | ||
compare_key_value_text_files, | ||
create_environment, | ||
create_location, | ||
create_project, | ||
debug, | ||
debug_level, | ||
del_temp_region, | ||
error, | ||
exec_command, | ||
fatal, | ||
feed_command, | ||
find_file, | ||
find_program, | ||
get_capture_stderr, | ||
get_commands, | ||
get_raise_on_error, | ||
get_real_command, | ||
gisenv, | ||
handle_errors, | ||
info, | ||
legal_name, | ||
list_grouped, | ||
list_pairs, | ||
list_strings, | ||
locn_is_latlong, | ||
make_command, | ||
mapsets, | ||
message, | ||
overwrite, | ||
parse_color, | ||
parse_command, | ||
parser, | ||
percent, | ||
pipe_command, | ||
read_command, | ||
region, | ||
region_env, | ||
run_command, | ||
sanitize_mapset_environment, | ||
set_capture_stderr, | ||
set_raise_on_error, | ||
start_command, | ||
tempdir, | ||
tempfile, | ||
tempname, | ||
use_temp_region, | ||
verbose, | ||
verbosity, | ||
version, | ||
warning, | ||
write_command, | ||
) | ||
from .db import ( | ||
db_begin_transaction, | ||
db_commit_transaction, | ||
db_connection, | ||
db_describe, | ||
db_select, | ||
db_table_exist, | ||
db_table_in_vector, | ||
) | ||
from .raster import mapcalc, mapcalc_start, raster_history, raster_info, raster_what | ||
from .raster3d import mapcalc3d, raster3d_info | ||
from .utils import ( | ||
KeyValue, | ||
append_node_pid, | ||
append_random, | ||
append_uuid, | ||
basename, | ||
clock, | ||
decode, | ||
diff_files, | ||
encode, | ||
float_or_dms, | ||
get_lib_path, | ||
get_num_suffix, | ||
legalize_vector_name, | ||
natural_sort, | ||
naturally_sorted, | ||
parse_key_val, | ||
separator, | ||
set_path, | ||
split, | ||
text_to_string, | ||
try_remove, | ||
try_rmdir, | ||
) | ||
from .vector import ( | ||
vector_columns, | ||
vector_db, | ||
vector_db_select, | ||
vector_history, | ||
vector_info, | ||
vector_info_topo, | ||
vector_layer_db, | ||
vector_what, | ||
) | ||
|
||
__all__ = [ | ||
"PIPE", | ||
"KeyValue", | ||
"Popen", | ||
"append_node_pid", | ||
"append_random", | ||
"append_uuid", | ||
"basename", | ||
"call", | ||
"clock", | ||
"compare_key_value_text_files", | ||
"create_environment", | ||
"create_location", | ||
"create_project", | ||
"db_begin_transaction", | ||
"db_commit_transaction", | ||
"db_connection", | ||
"db_describe", | ||
"db_select", | ||
"db_table_exist", | ||
"db_table_in_vector", | ||
"debug", | ||
"debug_level", | ||
"decode", | ||
"del_temp_region", | ||
"diff_files", | ||
"encode", | ||
"error", | ||
"exec_command", | ||
"fatal", | ||
"feed_command", | ||
"find_file", | ||
"find_program", | ||
"float_or_dms", | ||
"get_capture_stderr", | ||
"get_commands", | ||
"get_lib_path", | ||
"get_num_suffix", | ||
"get_raise_on_error", | ||
"get_real_command", | ||
"gisenv", | ||
"handle_errors", | ||
"info", | ||
"legal_name", | ||
"legalize_vector_name", | ||
"list_grouped", | ||
"list_pairs", | ||
"list_strings", | ||
"locn_is_latlong", | ||
"make_command", | ||
"mapcalc", | ||
"mapcalc3d", | ||
"mapcalc_start", | ||
"mapsets", | ||
"message", | ||
"natural_sort", | ||
"naturally_sorted", | ||
"overwrite", | ||
"parse_color", | ||
"parse_command", | ||
"parse_key_val", | ||
"parser", | ||
"percent", | ||
"pipe_command", | ||
"raster3d_info", | ||
"raster_history", | ||
"raster_info", | ||
"raster_what", | ||
"read_command", | ||
"region", | ||
"region_env", | ||
"run_command", | ||
"sanitize_mapset_environment", | ||
"separator", | ||
"set_capture_stderr", | ||
"set_path", | ||
"set_raise_on_error", | ||
"setup", | ||
"split", | ||
"start_command", | ||
"tempdir", | ||
"tempfile", | ||
"tempname", | ||
"text_to_string", | ||
"try_remove", | ||
"try_rmdir", | ||
"use_temp_region", | ||
"vector_columns", | ||
"vector_db", | ||
"vector_db_select", | ||
"vector_history", | ||
"vector_info", | ||
"vector_info_topo", | ||
"vector_layer_db", | ||
"vector_what", | ||
"verbose", | ||
"verbosity", | ||
"version", | ||
"warning", | ||
"write_command", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters