Skip to content

Commit

Permalink
happyfy header checker (mostly newline after header, before import)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhamail committed Mar 11, 2022
1 parent 1230079 commit 0afee0f
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions .mypy.ini
Expand Up @@ -13,6 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

[mypy]

files = jake/
Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Expand Up @@ -15,6 +15,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

import pkg_resources

# -- Project information -----------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions jake/app.py
Expand Up @@ -16,6 +16,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

import argparse
from argparse import ArgumentParser
from datetime import datetime
Expand Down
1 change: 1 addition & 0 deletions jake/command/config.py
Expand Up @@ -15,6 +15,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

from argparse import ArgumentParser

from . import BaseCommand
Expand Down
1 change: 1 addition & 0 deletions jake/command/iq.py
Expand Up @@ -15,6 +15,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

import logging
from argparse import ArgumentParser
from typing import Any, Dict, Optional, Union
Expand Down
1 change: 1 addition & 0 deletions jake/command/oss.py
Expand Up @@ -15,6 +15,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

import os
from argparse import ArgumentParser
from decimal import Decimal
Expand Down
1 change: 1 addition & 0 deletions jake/command/sbom.py
Expand Up @@ -15,6 +15,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

import sys
from argparse import ArgumentParser, FileType

Expand Down
1 change: 1 addition & 0 deletions license-excludes.xml
Expand Up @@ -9,6 +9,7 @@
<exclude>src/**/__init__.py</exclude>
<exclude>src/**/*.txt</exclude>
<exclude>src/.venv/**</exclude>
<exclude>src/venv/**</exclude>
<exclude>src/**/*.xsd</exclude>
<exclude>src/CHANGELOG.md</exclude>
<exclude>src/SECURITY.md</exclude>
Expand Down
1 change: 1 addition & 0 deletions tests/test_jake.py
Expand Up @@ -15,6 +15,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

import os
import subprocess
from unittest import TestCase
Expand Down

0 comments on commit 0afee0f

Please sign in to comment.