mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-25 10:10:56 -05:00
SQLFluff 0.12.0 upgrade (#2786)
This commit is contained in:
parent
9f445e5b29
commit
d597ca4472
5 changed files with 145 additions and 65 deletions
2
.automation/test/sqlfluff/.sqlfluff
Normal file
2
.automation/test/sqlfluff/.sqlfluff
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[sqlfluff]
|
||||||
|
dialect = ansi
|
|
@ -4,7 +4,9 @@ This folder holds the test cases for **SQL**.
|
||||||
|
|
||||||
## Additional Docs
|
## Additional Docs
|
||||||
|
|
||||||
No Additional information is needed for this test case.
|
From version 0.12.0 SQLFluff requires a dialect to be set, and no longer sets a default. This can be provided as a command line argument, or a `.sqlfluff` config file (either in the usualy place for SQLFluff config files, or within the folder containg the SQL).
|
||||||
|
|
||||||
|
For SQLFluff we have added a default `.sqlfluff` config file in this test directory.
|
||||||
|
|
||||||
## Good Test Cases
|
## Good Test Cases
|
||||||
|
|
||||||
|
|
102
.github/linters/.sqlfluff
vendored
102
.github/linters/.sqlfluff
vendored
|
@ -1,4 +1,4 @@
|
||||||
## This .sqlfluffini file can be used to configure the SQLFluff linter when
|
## This /.sqlfluff file can be used to configure the SQLFluff linter when
|
||||||
## used via the GitHub Super Linter. Copy it to the .github/linters folder of
|
## used via the GitHub Super Linter. Copy it to the .github/linters folder of
|
||||||
## your repo, and uncomment the necessary lines to configure the Super Linter.
|
## your repo, and uncomment the necessary lines to configure the Super Linter.
|
||||||
##
|
##
|
||||||
|
@ -31,7 +31,11 @@
|
||||||
#output_line_length = 80
|
#output_line_length = 80
|
||||||
## Number of passes to run before admitting defeat
|
## Number of passes to run before admitting defeat
|
||||||
#runaway_limit = 10
|
#runaway_limit = 10
|
||||||
## Ignore linting errors in templated sections
|
## Ignore errors by category (one or more of the following, separated by commas: lexing,linting,parsing,templating)
|
||||||
|
#ignore = None
|
||||||
|
## Ignore linting errors found within sections of code coming directly from
|
||||||
|
## templated code (e.g. from within Jinja curly braces. Note that it does not
|
||||||
|
## ignore errors from literal code found within template loops.
|
||||||
#ignore_templated_areas = True
|
#ignore_templated_areas = True
|
||||||
## can either be autodetect or a valid encoding e.g. utf-8, utf-8-sig
|
## can either be autodetect or a valid encoding e.g. utf-8, utf-8-sig
|
||||||
#encoding = autodetect
|
#encoding = autodetect
|
||||||
|
@ -40,27 +44,23 @@
|
||||||
## Comma separated list of file extensions to lint
|
## Comma separated list of file extensions to lint
|
||||||
## NB: This config will only apply in the root folder
|
## NB: This config will only apply in the root folder
|
||||||
#sql_file_exts = .sql,.sql.j2,.dml,.ddl
|
#sql_file_exts = .sql,.sql.j2,.dml,.ddl
|
||||||
#
|
## Allow fix to run on files, even if they contain parsing errors
|
||||||
|
## Note altering this is NOT RECOMMENDED as can corrupt SQL
|
||||||
|
#fix_even_unparsable = False
|
||||||
|
|
||||||
[sqlfluff:indentation]
|
[sqlfluff:indentation]
|
||||||
## See https://docs.sqlfluff.com/en/stable/indentation.html
|
## See https://docs.sqlfluff.com/en/stable/indentation.html
|
||||||
#indented_joins = False
|
#indented_joins = False
|
||||||
|
#indented_ctes = False
|
||||||
#indented_using_on = True
|
#indented_using_on = True
|
||||||
#template_blocks_indent = True
|
#template_blocks_indent = True
|
||||||
#
|
|
||||||
[sqlfluff:templater]
|
[sqlfluff:templater]
|
||||||
#unwrap_wrapped_queries = True
|
#unwrap_wrapped_queries = True
|
||||||
#
|
|
||||||
[sqlfluff:templater:jinja]
|
[sqlfluff:templater:jinja]
|
||||||
#apply_dbt_builtins = True
|
#apply_dbt_builtins = True
|
||||||
#
|
|
||||||
[sqlfluff:templater:jinja:macros]
|
|
||||||
## Macros provided as builtins for dbt projects
|
|
||||||
#dbt_ref = {% macro ref(model_ref) %}{{model_ref}}{% endmacro %}
|
|
||||||
#dbt_source = {% macro source(source_name, table) %}{{source_name}}_{{table}}{% endmacro %}
|
|
||||||
#dbt_config = {% macro config() %}{% for k in kwargs %}{% endfor %}{% endmacro %}
|
|
||||||
#dbt_var = {% macro var(variable, default='') %}item{% endmacro %}
|
|
||||||
#dbt_is_incremental = {% macro is_incremental() %}True{% endmacro %}
|
|
||||||
#
|
|
||||||
## Some rules can be configured directly from the config common to other rules
|
## Some rules can be configured directly from the config common to other rules
|
||||||
[sqlfluff:rules]
|
[sqlfluff:rules]
|
||||||
#tab_space_size = 4
|
#tab_space_size = 4
|
||||||
|
@ -70,79 +70,117 @@
|
||||||
#allow_scalar = True
|
#allow_scalar = True
|
||||||
#single_table_references = consistent
|
#single_table_references = consistent
|
||||||
#unquoted_identifiers_policy = all
|
#unquoted_identifiers_policy = all
|
||||||
#
|
|
||||||
## Some rules have their own specific config
|
## Some rules have their own specific config
|
||||||
[sqlfluff:rules:L007]
|
[sqlfluff:rules:L007]
|
||||||
#operator_new_lines = after
|
#operator_new_lines = after
|
||||||
#
|
|
||||||
[sqlfluff:rules:L010]
|
[sqlfluff:rules:L010]
|
||||||
## Keywords
|
## Keywords
|
||||||
#capitalisation_policy = consistent
|
#capitalisation_policy = consistent
|
||||||
#
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
||||||
[sqlfluff:rules:L011]
|
[sqlfluff:rules:L011]
|
||||||
## Aliasing preference for tables
|
## Aliasing preference for tables
|
||||||
#aliasing = explicit
|
#aliasing = explicit
|
||||||
#
|
|
||||||
[sqlfluff:rules:L012]
|
[sqlfluff:rules:L012]
|
||||||
## Aliasing preference for columns
|
## Aliasing preference for columns
|
||||||
#aliasing = explicit
|
#aliasing = explicit
|
||||||
#
|
|
||||||
[sqlfluff:rules:L014]
|
[sqlfluff:rules:L014]
|
||||||
## Unquoted identifiers
|
## Unquoted identifiers
|
||||||
#extended_capitalisation_policy = consistent
|
#extended_capitalisation_policy = consistent
|
||||||
#
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
||||||
[sqlfluff:rules:L016]
|
[sqlfluff:rules:L016]
|
||||||
## Line length
|
## Line length
|
||||||
#ignore_comment_lines = False
|
#ignore_comment_lines = False
|
||||||
#
|
#ignore_comment_clauses = False
|
||||||
|
|
||||||
[sqlfluff:rules:L026]
|
[sqlfluff:rules:L026]
|
||||||
## References must be in FROM clause
|
## References must be in FROM clause
|
||||||
## Disabled for some dialects (e.g. bigquery)
|
## Disabled for some dialects (e.g. bigquery)
|
||||||
#force_enable = False
|
#force_enable = False
|
||||||
#
|
|
||||||
[sqlfluff:rules:L028]
|
[sqlfluff:rules:L028]
|
||||||
## References must be consistently used
|
## References must be consistently used
|
||||||
## Disabled for some dialects (e.g. bigquery)
|
## Disabled for some dialects (e.g. bigquery)
|
||||||
#force_enable = False
|
#force_enable = False
|
||||||
#
|
|
||||||
[sqlfluff:rules:L029]
|
[sqlfluff:rules:L029]
|
||||||
## Keywords should not be used as identifiers.
|
## Keywords should not be used as identifiers.
|
||||||
#unquoted_identifiers_policy = aliases
|
#unquoted_identifiers_policy = aliases
|
||||||
#quoted_identifiers_policy = none
|
#quoted_identifiers_policy = none
|
||||||
#
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
||||||
[sqlfluff:rules:L030]
|
[sqlfluff:rules:L030]
|
||||||
## Function names
|
## Function names
|
||||||
#capitalisation_policy = consistent
|
#extended_capitalisation_policy = consistent
|
||||||
#
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
||||||
|
[sqlfluff:rules:L031]
|
||||||
|
## Avoid table aliases in from clauses and join conditions.
|
||||||
|
## Disabled for some dialects (e.g. bigquery)
|
||||||
|
#force_enable = False
|
||||||
|
|
||||||
[sqlfluff:rules:L038]
|
[sqlfluff:rules:L038]
|
||||||
## Trailing commas
|
## Trailing commas
|
||||||
#select_clause_trailing_comma = forbid
|
#select_clause_trailing_comma = forbid
|
||||||
#
|
|
||||||
[sqlfluff:rules:L040]
|
[sqlfluff:rules:L040]
|
||||||
## Null & Boolean Literals
|
## Null & Boolean Literals
|
||||||
#capitalisation_policy = consistent
|
#capitalisation_policy = consistent
|
||||||
#
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
||||||
[sqlfluff:rules:L042]
|
[sqlfluff:rules:L042]
|
||||||
## By default, allow subqueries in from clauses, but not join clauses
|
## By default, allow subqueries in from clauses, but not join clauses
|
||||||
#forbid_subquery_in = join
|
#forbid_subquery_in = join
|
||||||
#
|
|
||||||
[sqlfluff:rules:L047]
|
[sqlfluff:rules:L047]
|
||||||
## Consistent syntax to count all rows
|
## Consistent syntax to count all rows
|
||||||
#prefer_count_1 = False
|
#prefer_count_1 = False
|
||||||
#prefer_count_0 = False
|
#prefer_count_0 = False
|
||||||
#
|
|
||||||
|
[sqlfluff:rules:L051]
|
||||||
|
## Fully qualify JOIN clause
|
||||||
|
#fully_qualify_join_types = inner
|
||||||
|
|
||||||
[sqlfluff:rules:L052]
|
[sqlfluff:rules:L052]
|
||||||
## Semi-colon formatting approach
|
## Semi-colon formatting approach
|
||||||
#multiline_newline = False
|
#multiline_newline = False
|
||||||
#require_final_semicolon = False
|
#require_final_semicolon = False
|
||||||
#
|
|
||||||
[sqlfluff:rules:L054]
|
[sqlfluff:rules:L054]
|
||||||
## GROUP BY/ORDER BY column references
|
## GROUP BY/ORDER BY column references
|
||||||
#group_by_and_order_by_style = consistent
|
#group_by_and_order_by_style = consistent
|
||||||
#
|
|
||||||
[sqlfluff:rules:L057]
|
[sqlfluff:rules:L057]
|
||||||
## Special characters in identifiers
|
## Special characters in identifiers
|
||||||
#unquoted_identifiers_policy = all
|
#unquoted_identifiers_policy = all
|
||||||
#quoted_identifiers_policy = all
|
#quoted_identifiers_policy = all
|
||||||
#allow_space_in_identifier = False
|
#allow_space_in_identifier = False
|
||||||
#additional_allowed_characters = ""
|
#additional_allowed_characters = ""
|
||||||
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
||||||
|
[sqlfluff:rules:L059]
|
||||||
|
## Policy on quoted and unquoted identifiers
|
||||||
|
#prefer_quoted_identifiers = False
|
||||||
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
||||||
|
[sqlfluff:rules:L062]
|
||||||
|
## Comma separated list of blocked words that should not be used
|
||||||
|
#blocked_words = None
|
||||||
|
|
||||||
|
[sqlfluff:rules:L063]
|
||||||
|
## Data Types
|
||||||
|
#extended_capitalisation_policy = consistent
|
||||||
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
|
@ -31,7 +31,11 @@
|
||||||
#output_line_length = 80
|
#output_line_length = 80
|
||||||
## Number of passes to run before admitting defeat
|
## Number of passes to run before admitting defeat
|
||||||
#runaway_limit = 10
|
#runaway_limit = 10
|
||||||
## Ignore linting errors in templated sections
|
## Ignore errors by category (one or more of the following, separated by commas: lexing,linting,parsing,templating)
|
||||||
|
#ignore = None
|
||||||
|
## Ignore linting errors found within sections of code coming directly from
|
||||||
|
## templated code (e.g. from within Jinja curly braces. Note that it does not
|
||||||
|
## ignore errors from literal code found within template loops.
|
||||||
#ignore_templated_areas = True
|
#ignore_templated_areas = True
|
||||||
## can either be autodetect or a valid encoding e.g. utf-8, utf-8-sig
|
## can either be autodetect or a valid encoding e.g. utf-8, utf-8-sig
|
||||||
#encoding = autodetect
|
#encoding = autodetect
|
||||||
|
@ -40,27 +44,23 @@
|
||||||
## Comma separated list of file extensions to lint
|
## Comma separated list of file extensions to lint
|
||||||
## NB: This config will only apply in the root folder
|
## NB: This config will only apply in the root folder
|
||||||
#sql_file_exts = .sql,.sql.j2,.dml,.ddl
|
#sql_file_exts = .sql,.sql.j2,.dml,.ddl
|
||||||
#
|
## Allow fix to run on files, even if they contain parsing errors
|
||||||
|
## Note altering this is NOT RECOMMENDED as can corrupt SQL
|
||||||
|
#fix_even_unparsable = False
|
||||||
|
|
||||||
[sqlfluff:indentation]
|
[sqlfluff:indentation]
|
||||||
## See https://docs.sqlfluff.com/en/stable/indentation.html
|
## See https://docs.sqlfluff.com/en/stable/indentation.html
|
||||||
#indented_joins = False
|
#indented_joins = False
|
||||||
|
#indented_ctes = False
|
||||||
#indented_using_on = True
|
#indented_using_on = True
|
||||||
#template_blocks_indent = True
|
#template_blocks_indent = True
|
||||||
#
|
|
||||||
[sqlfluff:templater]
|
[sqlfluff:templater]
|
||||||
#unwrap_wrapped_queries = True
|
#unwrap_wrapped_queries = True
|
||||||
#
|
|
||||||
[sqlfluff:templater:jinja]
|
[sqlfluff:templater:jinja]
|
||||||
#apply_dbt_builtins = True
|
#apply_dbt_builtins = True
|
||||||
#
|
|
||||||
[sqlfluff:templater:jinja:macros]
|
|
||||||
## Macros provided as builtins for dbt projects
|
|
||||||
#dbt_ref = {% macro ref(model_ref) %}{{model_ref}}{% endmacro %}
|
|
||||||
#dbt_source = {% macro source(source_name, table) %}{{source_name}}_{{table}}{% endmacro %}
|
|
||||||
#dbt_config = {% macro config() %}{% for k in kwargs %}{% endfor %}{% endmacro %}
|
|
||||||
#dbt_var = {% macro var(variable, default='') %}item{% endmacro %}
|
|
||||||
#dbt_is_incremental = {% macro is_incremental() %}True{% endmacro %}
|
|
||||||
#
|
|
||||||
## Some rules can be configured directly from the config common to other rules
|
## Some rules can be configured directly from the config common to other rules
|
||||||
[sqlfluff:rules]
|
[sqlfluff:rules]
|
||||||
#tab_space_size = 4
|
#tab_space_size = 4
|
||||||
|
@ -70,79 +70,117 @@
|
||||||
#allow_scalar = True
|
#allow_scalar = True
|
||||||
#single_table_references = consistent
|
#single_table_references = consistent
|
||||||
#unquoted_identifiers_policy = all
|
#unquoted_identifiers_policy = all
|
||||||
#
|
|
||||||
## Some rules have their own specific config
|
## Some rules have their own specific config
|
||||||
[sqlfluff:rules:L007]
|
[sqlfluff:rules:L007]
|
||||||
#operator_new_lines = after
|
#operator_new_lines = after
|
||||||
#
|
|
||||||
[sqlfluff:rules:L010]
|
[sqlfluff:rules:L010]
|
||||||
## Keywords
|
## Keywords
|
||||||
#capitalisation_policy = consistent
|
#capitalisation_policy = consistent
|
||||||
#
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
||||||
[sqlfluff:rules:L011]
|
[sqlfluff:rules:L011]
|
||||||
## Aliasing preference for tables
|
## Aliasing preference for tables
|
||||||
#aliasing = explicit
|
#aliasing = explicit
|
||||||
#
|
|
||||||
[sqlfluff:rules:L012]
|
[sqlfluff:rules:L012]
|
||||||
## Aliasing preference for columns
|
## Aliasing preference for columns
|
||||||
#aliasing = explicit
|
#aliasing = explicit
|
||||||
#
|
|
||||||
[sqlfluff:rules:L014]
|
[sqlfluff:rules:L014]
|
||||||
## Unquoted identifiers
|
## Unquoted identifiers
|
||||||
#extended_capitalisation_policy = consistent
|
#extended_capitalisation_policy = consistent
|
||||||
#
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
||||||
[sqlfluff:rules:L016]
|
[sqlfluff:rules:L016]
|
||||||
## Line length
|
## Line length
|
||||||
#ignore_comment_lines = False
|
#ignore_comment_lines = False
|
||||||
#
|
#ignore_comment_clauses = False
|
||||||
|
|
||||||
[sqlfluff:rules:L026]
|
[sqlfluff:rules:L026]
|
||||||
## References must be in FROM clause
|
## References must be in FROM clause
|
||||||
## Disabled for some dialects (e.g. bigquery)
|
## Disabled for some dialects (e.g. bigquery)
|
||||||
#force_enable = False
|
#force_enable = False
|
||||||
#
|
|
||||||
[sqlfluff:rules:L028]
|
[sqlfluff:rules:L028]
|
||||||
## References must be consistently used
|
## References must be consistently used
|
||||||
## Disabled for some dialects (e.g. bigquery)
|
## Disabled for some dialects (e.g. bigquery)
|
||||||
#force_enable = False
|
#force_enable = False
|
||||||
#
|
|
||||||
[sqlfluff:rules:L029]
|
[sqlfluff:rules:L029]
|
||||||
## Keywords should not be used as identifiers.
|
## Keywords should not be used as identifiers.
|
||||||
#unquoted_identifiers_policy = aliases
|
#unquoted_identifiers_policy = aliases
|
||||||
#quoted_identifiers_policy = none
|
#quoted_identifiers_policy = none
|
||||||
#
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
||||||
[sqlfluff:rules:L030]
|
[sqlfluff:rules:L030]
|
||||||
## Function names
|
## Function names
|
||||||
#capitalisation_policy = consistent
|
#extended_capitalisation_policy = consistent
|
||||||
#
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
||||||
|
[sqlfluff:rules:L031]
|
||||||
|
## Avoid table aliases in from clauses and join conditions.
|
||||||
|
## Disabled for some dialects (e.g. bigquery)
|
||||||
|
#force_enable = False
|
||||||
|
|
||||||
[sqlfluff:rules:L038]
|
[sqlfluff:rules:L038]
|
||||||
## Trailing commas
|
## Trailing commas
|
||||||
#select_clause_trailing_comma = forbid
|
#select_clause_trailing_comma = forbid
|
||||||
#
|
|
||||||
[sqlfluff:rules:L040]
|
[sqlfluff:rules:L040]
|
||||||
## Null & Boolean Literals
|
## Null & Boolean Literals
|
||||||
#capitalisation_policy = consistent
|
#capitalisation_policy = consistent
|
||||||
#
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
||||||
[sqlfluff:rules:L042]
|
[sqlfluff:rules:L042]
|
||||||
## By default, allow subqueries in from clauses, but not join clauses
|
## By default, allow subqueries in from clauses, but not join clauses
|
||||||
#forbid_subquery_in = join
|
#forbid_subquery_in = join
|
||||||
#
|
|
||||||
[sqlfluff:rules:L047]
|
[sqlfluff:rules:L047]
|
||||||
## Consistent syntax to count all rows
|
## Consistent syntax to count all rows
|
||||||
#prefer_count_1 = False
|
#prefer_count_1 = False
|
||||||
#prefer_count_0 = False
|
#prefer_count_0 = False
|
||||||
#
|
|
||||||
|
[sqlfluff:rules:L051]
|
||||||
|
## Fully qualify JOIN clause
|
||||||
|
#fully_qualify_join_types = inner
|
||||||
|
|
||||||
[sqlfluff:rules:L052]
|
[sqlfluff:rules:L052]
|
||||||
## Semi-colon formatting approach
|
## Semi-colon formatting approach
|
||||||
#multiline_newline = False
|
#multiline_newline = False
|
||||||
#require_final_semicolon = False
|
#require_final_semicolon = False
|
||||||
#
|
|
||||||
[sqlfluff:rules:L054]
|
[sqlfluff:rules:L054]
|
||||||
## GROUP BY/ORDER BY column references
|
## GROUP BY/ORDER BY column references
|
||||||
#group_by_and_order_by_style = consistent
|
#group_by_and_order_by_style = consistent
|
||||||
#
|
|
||||||
[sqlfluff:rules:L057]
|
[sqlfluff:rules:L057]
|
||||||
## Special characters in identifiers
|
## Special characters in identifiers
|
||||||
#unquoted_identifiers_policy = all
|
#unquoted_identifiers_policy = all
|
||||||
#quoted_identifiers_policy = all
|
#quoted_identifiers_policy = all
|
||||||
#allow_space_in_identifier = False
|
#allow_space_in_identifier = False
|
||||||
#additional_allowed_characters = ""
|
#additional_allowed_characters = ""
|
||||||
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
||||||
|
[sqlfluff:rules:L059]
|
||||||
|
## Policy on quoted and unquoted identifiers
|
||||||
|
#prefer_quoted_identifiers = False
|
||||||
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
||||||
|
[sqlfluff:rules:L062]
|
||||||
|
## Comma separated list of blocked words that should not be used
|
||||||
|
#blocked_words = None
|
||||||
|
|
||||||
|
[sqlfluff:rules:L063]
|
||||||
|
## Data Types
|
||||||
|
#extended_capitalisation_policy = consistent
|
||||||
|
## Comma separated list of words to ignore for this rule
|
||||||
|
#ignore_words = None
|
||||||
|
|
2
dependencies/python/sqlfluff.txt
vendored
2
dependencies/python/sqlfluff.txt
vendored
|
@ -16,7 +16,7 @@ pyparsing==3.0.8
|
||||||
pytest==7.1.1
|
pytest==7.1.1
|
||||||
PyYAML==6.0
|
PyYAML==6.0
|
||||||
regex==2022.3.15
|
regex==2022.3.15
|
||||||
sqlfluff==0.11.2
|
sqlfluff==0.12.0
|
||||||
tblib==1.7.0
|
tblib==1.7.0
|
||||||
toml==0.10.2
|
toml==0.10.2
|
||||||
tomli==2.0.1
|
tomli==2.0.1
|
||||||
|
|
Loading…
Reference in a new issue