Skip to content

Commit 30cbd9f

Browse files
committed
fix: remove py2 utf8 encoding
1 parent 633bf53 commit 30cbd9f

File tree

14 files changed

+0
-14
lines changed

14 files changed

+0
-14
lines changed

extruct/jsonld.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# mypy: disallow_untyped_defs=False
2-
# -*- coding: utf-8 -*-
32
"""
43
JSON-LD extractor
54
"""

extruct/rdfa.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# mypy: disallow_untyped_defs=False
2-
# -*- coding: utf-8 -*-
32
"""
43
RDFa extractor
54

extruct/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# mypy: disallow_untyped_defs=False
2-
# -*- coding: utf-8 -*-
32
import lxml.html
43

54
from extruct.xmldom import XmlDomHTMLParser

extruct/xmldom.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# mypy: disallow_untyped_defs=False
22
from __future__ import annotations
33

4-
# -*- coding: utf-8 -*-
54
from copy import copy, deepcopy
65
from xml.dom import Node
76
from xml.dom.minidom import Attr, NamedNodeMap

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# mypy: disallow_untyped_defs=False
2-
# -*- coding: utf-8 -*-
32
import os
43

54
from setuptools import find_packages, setup

tests/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# mypy: disallow_untyped_defs=False
2-
# -*- coding: utf-8 -*-
32
import json
43
import os
54

tests/test_dublincore.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# mypy: disallow_untyped_defs=False
2-
# -*- coding: utf-8 -*-
32
import json
43
import unittest
54

tests/test_extruct.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# mypy: disallow_untyped_defs=False
2-
# -*- coding: utf-8 -*-
32
import json
43
import unittest
54

tests/test_extruct_uniform.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# mypy: disallow_untyped_defs=False
2-
# -*- coding: utf-8 -*-
32
import json
43
import unittest
54

tests/test_jsonld.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# mypy: disallow_untyped_defs=False
2-
# -*- coding: utf-8 -*-
32
import json
43
import unittest
54

0 commit comments

Comments
 (0)