Skip to content

Commit

Permalink
Comment out type annotations for Python 2
Browse files Browse the repository at this point in the history
  • Loading branch information
chuanconggao committed Jul 2, 2018
1 parent f3d7409 commit 99d7fbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions html2json/html2json.py
Expand Up @@ -4,10 +4,10 @@
from __future__ import absolute_import, division, print_function, unicode_literals
from builtins import *

from typing import *
# from typing import *

Template = Dict[str, Any]
Data = Dict[str, Any]
# Template = Dict[str, Any]
# Data = Dict[str, Any]

import re

Expand Down
2 changes: 1 addition & 1 deletion setup.py 100644 → 100755
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup

url = "https://github.com/chuanconggao/html2json"
version = "0.2.4"
version = "0.2.4.1"

setup(
name="html2json",
Expand Down

0 comments on commit 99d7fbb

Please sign in to comment.