Skip to content

Commit

Permalink
remove redundant coding comment
Browse files Browse the repository at this point in the history
  • Loading branch information
swistakm committed Jan 11, 2017
1 parent f39e28f commit 1d066fd
Show file tree
Hide file tree
Showing 21 changed files with 0 additions and 22 deletions.
1 change: 0 additions & 1 deletion demo/app.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import falcon

from graceful.serializers import BaseSerializer
Expand Down
1 change: 0 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import sys
import os
import shlex
Expand Down
1 change: 0 additions & 1 deletion docs/convert_readme.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
This scripts handles conversion of Markdown README into rst for inclusion
in Sphinx documentation.
Expand Down
1 change: 0 additions & 1 deletion src/graceful/errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from falcon import HTTPBadRequest, HTTPInvalidParam


Expand Down
1 change: 0 additions & 1 deletion src/graceful/fields.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import inspect

from graceful.validators import min_validator, max_validator
Expand Down
1 change: 0 additions & 1 deletion src/graceful/parameters.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import base64
import decimal
import binascii
Expand Down
1 change: 0 additions & 1 deletion src/graceful/resources/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# -*- coding: utf-8 -*-
"""Subpackage that provides all base/generic resource classes and mixins."""
1 change: 0 additions & 1 deletion src/graceful/resources/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import json
import inspect
from collections import OrderedDict
Expand Down
1 change: 0 additions & 1 deletion src/graceful/resources/generic.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from functools import partial

from graceful.resources.base import BaseResource
Expand Down
1 change: 0 additions & 1 deletion src/graceful/resources/mixins.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from functools import partial

import falcon
Expand Down
1 change: 0 additions & 1 deletion src/graceful/serializers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from collections import OrderedDict
from collections.abc import Mapping, MutableMapping

Expand Down
1 change: 0 additions & 1 deletion src/graceful/validators.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import re

from graceful.errors import ValidationError
Expand Down
1 change: 0 additions & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# -*- coding: utf-8 -*-
"""Graceful tests package."""
1 change: 0 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
# -*- coding: utf-8 -*-
# those fixtures will be available for whole tests package
from .fixtures import req, resp # noqa
1 change: 0 additions & 1 deletion tests/fixtures.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import pytest

from falcon import Request, Response
Expand Down
2 changes: 0 additions & 2 deletions tests/test_fields.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-

import pytest
from graceful.errors import ValidationError

Expand Down
1 change: 0 additions & 1 deletion tests/test_generic.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from functools import wraps
import json
from unittest import TestCase
Expand Down
1 change: 0 additions & 1 deletion tests/test_parameters.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import decimal
import base64

Expand Down
1 change: 0 additions & 1 deletion tests/test_resources.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import copy
import json
from collections.abc import Iterable
Expand Down
1 change: 0 additions & 1 deletion tests/test_serializers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
""" This module tests basic Serializer API behaviour.
All tested serializer classes should be defined within tests because
Expand Down
1 change: 0 additions & 1 deletion tests/test_validators.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import re
import pytest

Expand Down

0 comments on commit 1d066fd

Please sign in to comment.