Skip to content

Commit b2aedf4

Browse files
committed
Fix some incorrect comments in mcc_api.island schema
1 parent 7b56d87 commit b2aedf4

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

mcc_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"__version__"
55
]
66

7-
__version__ = "1.4.3"
7+
__version__ = "1.4.4"
88
__user_agent: t.Final[str] = f"python_mcc_api/{__version__} (https://github.com/JamesMCo/python_mcc_api)"

mcc_api/island/interfaces.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
description="An asset.\n\n"
1313
"Effectively, an asset encompasses all forms of items on the Island.\n"
1414
"This includes Cosmetics, openables, materials, fish, etc.\n"
15-
"Basically anything that can fit in your Infinibag!",
15+
"Basically, anything that can fit in your Infinibag!",
1616
fields={
1717
"name": GraphQLField(
1818
GraphQLNonNull(GraphQLString),

mcc_api/island/types.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115

116116
badge_progress_type = GraphQLObjectType(
117117
name="BadgeProgress",
118-
description="A badge with its progress",
118+
description="A badge with its progress.",
119119
fields=lambda: {
120120
"badge": GraphQLField(
121121
GraphQLNonNull(badge_type),
@@ -691,7 +691,7 @@
691691
GraphQLNonNull(GraphQLList(GraphQLNonNull(faction_type))),
692692
description="Faction data for the player.\n\n"
693693
"A list with all factions data for the player, including level, experience, "
694-
"and whether is is the currently selected faction."
694+
"and whether it is the currently selected faction."
695695
),
696696
"infinibag": GraphQLField(
697697
GraphQLList(GraphQLNonNull(asset_quantity_type)),
@@ -700,7 +700,7 @@
700700
),
701701
"infinivault": GraphQLField(
702702
GraphQLList(GraphQLNonNull(asset_quantity_type)),
703-
description="The contents of the plaeyr's Infinivault.\n\n"
703+
description="The contents of the player's Infinivault.\n\n"
704704
"This method is conditional on the player having the in-game \"infinibag\" API setting enabled."
705705
),
706706
"mccPlusStatus": GraphQLField(
@@ -834,7 +834,7 @@
834834
"This endpoint will not return listings until they have been "
835835
"active for a certain length of time.\n"
836836
"This is to help prevent sniping/botting and to ensure server "
837-
"players have priority of website/bot users."
837+
"players have priority over website/bot users."
838838
),
839839
"soldIslandExchangeListings": GraphQLField(
840840
GraphQLNonNull(GraphQLList(GraphQLNonNull(island_exchange_listing_type))),

0 commit comments

Comments
 (0)