Metadata-Version: 2.1
Name: remove-empty-comment
Version: 1.0.2
Summary: UNKNOWN
Home-page: https://github.com/Pierre-Sassoulas/remove-empty-comment/
Author: Pierre Sassoulas
Author-email: pierre.sassoulas@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown

# remove-empty-comment

Little pre-commit script that remove empty comments from your code

[![PyPI version](https://badge.fury.io/py/remove-empty-comment.svg)](https://badge.fury.io/py/remove-empty-comment)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)

> If you feel the need for separators in your code, you might as well start using functions.

## Installation

```yaml
-   repo: https://github.com/Pierre-Sassoulas/remove-empty-comment/
    rev: 1.0.2
    hooks:
    - id: remove-empty-comment
```

## Before

```python

###############
# main function
###############
def main():
    a = 1
    b = 2
    c = a + b

    #

    print(c)

```

## After

```python

# main function
def main():
    a = 1
    b = 2
    c = a + b


    print(c)

```

