Skip to content

Commit f45612e

Browse files
committed
🐞 fix: import
1 parent 20094d0 commit f45612e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

example/demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
from src.notify import useNotify, channels
2+
from notify import useNotify, channels
33

44
notify = useNotify()
55
notify.add(

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ml-simple-notify"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "一个简单可扩展的消息通知库"
55
authors = ["miclon <jcnd@163.com>"]
66
readme = "README.md"

src/notify/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from src.notify.notification import Notify
1+
from .notification import Notify
22

33
useNotify = Notify

0 commit comments

Comments
 (0)