Skip to content
This repository was archived by the owner on Sep 18, 2025. It is now read-only.

Commit dfdaa7f

Browse files
committed
fix imports
1 parent c45a774 commit dfdaa7f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

mwedittypes/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
from .mwedittypes import EditTypes
1+
from .mwedittypes import EditTypes, SimpleEditTypes
22

33
__title__ = "mwedittypes"
44
__summary__ = "mwedittypes is a package that supports edit diffs and action detection for Wikipedia"
55
__url__ = "https://github.com/geohci/edit-types"
66

7-
__version__ = "1.2.0"
7+
__version__ = "1.2.1"
88

99
__license__ = "MIT License"
1010

11-
__all__ = ["EditTypes"]
11+
__all__ = ["EditTypes", "SimpleEditTypes"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
88
long_description = "\n" + fh.read()
99

10-
VERSION = '1.2.0'
10+
VERSION = '1.2.1'
1111
DESCRIPTION = 'Edit diffs and type detection for Wikipedia'
1212
LONG_DESCRIPTION = 'A package that allows edit diffs and type detection for Wikipedia.'
1313

0 commit comments

Comments
 (0)