Use some more wildcard imports in rules (#5201)

This commit is contained in:
Charlie Marsh 2023-06-19 23:21:08 -04:00 committed by GitHub
parent a797e05602
commit 4cc3cdba16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
pub(crate) use f_string_in_gettext_func_call::*;
pub(crate) use format_in_gettext_func_call::*;
pub(crate) use is_gettext_func_call::is_gettext_func_call;
pub(crate) use is_gettext_func_call::*;
pub(crate) use printf_in_gettext_func_call::*;
mod f_string_in_gettext_func_call;

View file

@ -1,3 +1,3 @@
pub(crate) use logging_call::logging_call;
pub(crate) use logging_call::*;
mod logging_call;

View file

@ -1,3 +1,3 @@
pub(crate) use replaceable_by_pathlib::replaceable_by_pathlib;
pub(crate) use replaceable_by_pathlib::*;
mod replaceable_by_pathlib;

View file

@ -11,7 +11,7 @@ pub(crate) use comparison_with_itself::*;
pub(crate) use continue_in_finally::*;
pub(crate) use duplicate_bases::*;
pub(crate) use global_statement::*;
pub(crate) use global_variable_not_assigned::GlobalVariableNotAssigned;
pub(crate) use global_variable_not_assigned::*;
pub(crate) use import_self::*;
pub(crate) use invalid_all_format::*;
pub(crate) use invalid_all_object::*;
@ -26,7 +26,7 @@ pub(crate) use magic_value_comparison::*;
pub(crate) use manual_import_from::*;
pub(crate) use named_expr_without_context::*;
pub(crate) use nested_min_max::*;
pub(crate) use nonlocal_without_binding::NonlocalWithoutBinding;
pub(crate) use nonlocal_without_binding::*;
pub(crate) use property_with_parameters::*;
pub(crate) use redefined_loop_name::*;
pub(crate) use repeated_isinstance_calls::*;

View file

@ -4,7 +4,7 @@ pub(crate) use collection_literal_concatenation::*;
pub(crate) use explicit_f_string_type_conversion::*;
pub(crate) use function_call_in_dataclass_default::*;
pub(crate) use implicit_optional::*;
pub(crate) use invalid_pyproject_toml::InvalidPyprojectToml;
pub(crate) use invalid_pyproject_toml::*;
pub(crate) use mutable_class_default::*;
pub(crate) use mutable_dataclass_default::*;
pub(crate) use pairwise_over_zipped::*;