remove stray breakpoint

This commit is contained in:
Olivia Appleton 2022-11-02 16:52:35 -04:00
parent 864812a80b
commit 0fda3dd555
GPG Key ID: AF65A9CA0FF7FD69
5 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.0.2
current_version = 0.7.0.3
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\.(?P<build>\d+)
serialize = {major}.{minor}.{patch}.{build}

View File

@ -2,7 +2,7 @@
name = ManifoldMarketManager
author = Olivia Appleton
author_email = Liv@OliviaAppleton.com
version = 0.7.0.2
version = 0.7.0.3
description = Tools and market management for manifold.markets
long_description = file: README.md
long_description_content_type = text/markdown

BIN
src.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 802 KiB

After

Width:  |  Height:  |  Size: 816 KiB

View File

@ -156,7 +156,7 @@ register_converter("Rule", loads)
register_adapter(market.Market, dumps)
register_converter("Market", loads)
VERSION = "0.7.0.2"
VERSION = "0.7.0.3"
__version_info__ = tuple(int(x) for x in VERSION.split('.'))
__all__ = [
"__version_info__", "VERSION", "DoResolveRule", "ResolutionValueRule", "Rule", "Market", "get_client", "rule",

View File

@ -38,7 +38,6 @@ class ManifoldMarketMixin:
elif self.slug:
slug = self.slug
else:
breakpoint()
slug = self.slug = cast(str, self.url).split("/")[-1]
self.id_ = get_client().get_market_by_slug(slug).id