Skip to content

Commit 81f2dd4

Browse files
committed
fix: Fix placement of default PAN-OS version const
1 parent a7e667f commit 81f2dd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

panos/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ class PanObject(object):
7070
CHILDMETHODS = ()
7171
HA_SYNC = True
7272
TEMPLATE_NATIVE = False
73+
_UNKNOWN_PANOS_VERSION = (sys.maxsize, 0, 0)
7374

7475
def __init__(self, *args, **kwargs):
7576
# Set the 'name' variable
@@ -2257,7 +2258,6 @@ class VersionedPanObject(PanObject):
22572258
22582259
"""
22592260

2260-
_UNKNOWN_PANOS_VERSION = (sys.maxsize, 0, 0)
22612261
_DEFAULT_NAME = None
22622262
_TEMPLATE_DEVICE_XPATH = "/config/devices/entry[@name='localhost.localdomain']"
22632263
_TEMPLATE_VSYS_XPATH = _TEMPLATE_DEVICE_XPATH + "/vsys/entry[@name='{vsys}']"

0 commit comments

Comments
 (0)