Skip to content

Commit fbeb742

Browse files
committed
docs: fix issue with wrong word "shows" instead of "show"
1 parent cdbfaaf commit fbeb742

28 files changed

+28
-28
lines changed

pycheckpoint_api/management/network_objects/access_point_name.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def show_access_point_names(
271271
:obj:`Box`: The response from the server
272272
273273
Examples:
274-
>>> firewall.network_objects.access_point_name.shows_access_point_names()
274+
>>> firewall.network_objects.access_point_name.show_access_point_names()
275275
"""
276276
return self.show_objects(
277277
endpoint="show-access-point-names",

pycheckpoint_api/management/network_objects/address_range.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ def show_address_ranges(
295295
:obj:`Box`: The response from the server
296296
297297
Examples:
298-
>>> firewall.network_objects.network.shows_address_ranges()
298+
>>> firewall.network_objects.network.show_address_ranges()
299299
"""
300300
return self.show_objects(
301301
endpoint="show-address-ranges",

pycheckpoint_api/management/network_objects/dns_domain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def show_dns_domains(
228228
:obj:`Box`: The response from the server
229229
230230
Examples:
231-
>>> firewall.network_objects.dns_domain.shows_dns_domains()
231+
>>> firewall.network_objects.dns_domain.show_dns_domains()
232232
"""
233233
return self.show_objects(
234234
endpoint="show-dns-domains",

pycheckpoint_api/management/network_objects/dynamic_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def show_dynamic_objects(
224224
:obj:`Box`: The response from the server
225225
226226
Examples:
227-
>>> firewall.network_objects.dynamic_object.shows_dynamic_objects()
227+
>>> firewall.network_objects.dynamic_object.show_dynamic_objects()
228228
"""
229229
return self.show_objects(
230230
endpoint="show-dynamic-objects",

pycheckpoint_api/management/network_objects/group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def show_groups(
222222
:obj:`Box`: The response from the server
223223
224224
Examples:
225-
>>> firewall.network_objects.group.shows_groups()
225+
>>> firewall.network_objects.group.show_groups()
226226
"""
227227
return self.show_objects(
228228
endpoint="show-groups",

pycheckpoint_api/management/network_objects/gsn_handover_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def show_gsn_handover_groups(
237237
:obj:`Box`: The response from the server
238238
239239
Examples:
240-
>>> firewall.network_objects.group.shows_groups()
240+
>>> firewall.network_objects.group.show_groups()
241241
"""
242242
return self.show_objects(
243243
endpoint="show-gsn-handover-groups",

pycheckpoint_api/management/network_objects/host.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def show_hosts(
262262
:obj:`Box`: The response from the server
263263
264264
Examples:
265-
>>> firewall.network_objects.host.shows_hosts()
265+
>>> firewall.network_objects.host.show_hosts()
266266
"""
267267
return self.show_objects(
268268
endpoint="show-hosts",

pycheckpoint_api/management/network_objects/lsm_cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def show_lsm_clusters(
255255
:obj:`Box`: The response from the server
256256
257257
Examples:
258-
>>> firewall.network_objects.lsm_cluster.shows_lsm_clusters()
258+
>>> firewall.network_objects.lsm_cluster.show_lsm_clusters()
259259
"""
260260
return self.show_objects(
261261
endpoint="show-lsm-clusters",

pycheckpoint_api/management/network_objects/lsm_gateway.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def show_lsm_gateways(
253253
:obj:`Box`: The response from the server
254254
255255
Examples:
256-
>>> firewall.network_objects.lsm_gateway.shows_lsm_gateways()
256+
>>> firewall.network_objects.lsm_gateway.show_lsm_gateways()
257257
"""
258258
return self.show_objects(
259259
endpoint="show-lsm-gateways",

pycheckpoint_api/management/network_objects/lsv_profile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def show_lsv_profiles(
252252
:obj:`Box`: The response from the server
253253
254254
Examples:
255-
>>> firewall.network_objects.lsv_profile.shows_lsv_profiles()
255+
>>> firewall.network_objects.lsv_profile.show_lsv_profiles()
256256
"""
257257
return self.show_objects(
258258
endpoint="show-lsv-profiles",

0 commit comments

Comments
 (0)