Metadata-Version: 2.1
Name: flake8-logging-arg-count
Version: 0.3.0
Summary: A flake8 plugin for detecting logging statements with mismatched argument counts
License: Apache License Version 2.0
Project-URL: github, https://github.com/samety/flake8-logging-arg-count
Keywords: flake8,flake8.plugin,flake8.extension
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# flake8-logging-arg-count

flake8 plugin that checks if the number of arguments is inline with the number of `%s` placeholders.

- For example:
	- This is OK\
	`logging.warning('My message %s', x)`

	- These will trigger `LAC101`\
	`logging.warning('My message %s', x, y)`\
	`logging.warning('My message %s %s', x)`
