Skip to content

Commit

Permalink
release: 3.1.0dev5
Browse files Browse the repository at this point in the history
  • Loading branch information
ukwhatn committed Sep 28, 2024
1 parent 86a034f commit 85c1b42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "wikidot"
version = "3.1.0dev4"
version = "3.1.0dev5"
authors = [{ name = "ukwhatn", email = "[email protected]" }]
description = "Wikidot Utility Library"
readme = "README.md"
Expand Down
5 changes: 2 additions & 3 deletions src/wikidot/module/site.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@
from wikidot.common import exceptions
from wikidot.common.decorators import login_required
from wikidot.module.forum import Forum
from wikidot.module.page import PageCollection, SearchPagesQuery
from wikidot.module.page import Page, PageCollection, SearchPagesQuery
from wikidot.module.site_application import SiteApplication

if TYPE_CHECKING:
from wikidot.module.client import Client
from wikidot.module.page import Page
from wikidot.module.user import User


Expand Down Expand Up @@ -91,7 +90,7 @@ def create(
force_edit: bool
ページが存在する場合に上書きするかどうか
"""
Page.create_or_edit(
return Page.create_or_edit(
site=self.site,
fullname=fullname,
title=title,
Expand Down

0 comments on commit 85c1b42

Please sign in to comment.