Metadata-Version: 2.1
Name: no_string_hints
Version: 0.1.6
Summary: A tool to automatically replace string literals in type annotations.
Home-page: https://github.com/MarcoGorelli/no-string-hints
Author: Marco Gorelli
License: MIT
Description: [![Build Status](https://github.com/MarcoGorelli/no-string-hints/workflows/tox/badge.svg)](https://github.com/MarcoGorelli/no-string-hints/actions?workflow=tox)
        [![Coverage](https://codecov.io/gh/MarcoGorelli/no-string-hints/branch/main/graph/badge.svg)](https://codecov.io/gh/MarcoGorelli/no-string-hints)
        [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/MarcoGorelli/no-string-hints/main.svg)](https://results.pre-commit.ci/latest/github/MarcoGorelli/no-string-hints/main)
        
        no-string-hints
        ================
        
        A pre-commit hook to automatically remove string literals as type hints from argument, return, and class variable type annotations.
        
        ## Installation
        
        `pip install no_string_hints`
        ## As a pre-commit hook
        
        See [pre-commit](https://github.com/pre-commit/pre-commit) for instructions
        
        Sample `.pre-commit-config.yaml`:
        
        ```yaml
        -   repo: https://github.com/MarcoGorelli/no-string-hints
            rev: v0.1.6
            hooks:
            -   id: no-string-hints
        ```
        
        ## See also
        
        Check out [pyupgrade](https://github.com/asottile/pyupgrade), which I learned a lot from when writing this.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.1
Description-Content-Type: text/markdown
