Skip to content

Commit

Permalink
Remove encoding declaration.
Browse files Browse the repository at this point in the history
This was an oversight and not needed if it's UTF-8
Removed Flake 8
  • Loading branch information
rh0dium committed Nov 12, 2024
1 parent a946415 commit dda0086
Show file tree
Hide file tree
Showing 13 changed files with 0 additions and 25 deletions.
12 changes: 0 additions & 12 deletions .flake8

This file was deleted.

1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ repos:
- id: check-merge-conflict
- id: check-symlinks
- id: detect-private-key
- id: fix-encoding-pragma
- id: end-of-file-fixer
exclude: .idea/.*|.*\.blg|.*\.json|.*\.dat
- id: trailing-whitespace
Expand Down
1 change: 0 additions & 1 deletion bootstrap_templatetags/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
__name__ = "bootstrap_templatetags"
__author__ = "Pivotal Energy Solutions"
__version_info__ = (2, 1, 36)
Expand Down
1 change: 0 additions & 1 deletion bootstrap_templatetags/templatetags/bootstrap_tags.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from django import template
from django.conf import settings
from django.forms.utils import flatatt
Expand Down
1 change: 0 additions & 1 deletion bootstrap_templatetags/templatetags/easytag.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from functools import partial, wraps
from inspect import getfullargspec

Expand Down
1 change: 0 additions & 1 deletion bootstrap_templatetags/test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from django.template import Context, Template
from django.test import SimpleTestCase

Expand Down
1 change: 0 additions & 1 deletion demo/demo/asgi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""
ASGI config for demo project.
Expand Down
1 change: 0 additions & 1 deletion demo/demo/settings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""
Django settings for demo project.
Expand Down
2 changes: 0 additions & 2 deletions demo/demo/settings_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-

import os
import warnings

Expand Down
1 change: 0 additions & 1 deletion demo/demo/urls.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""demo URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
Expand Down
1 change: 0 additions & 1 deletion demo/demo/wsgi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""
WSGI config for demo project.
Expand Down
1 change: 0 additions & 1 deletion demo/manage.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Django's command-line utility for administrative tasks."""

import os
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ dependencies = [
test = [
"django-environ",
"mysqlclient",
"flake8",
"coverage",
"pre-commit",
"black",
Expand Down

0 comments on commit dda0086

Please sign in to comment.