Lint: F821 undefined name 'reqargs'

These were functions that were missing an expected reqargs pass.
This commit is contained in:
Joshua Boniface 2020-11-07 13:28:59 -05:00
parent 8cfb83916e
commit f707e1075a
1 changed files with 3 additions and 3 deletions

View File

@ -2310,7 +2310,7 @@ class API_Network_Lease_Element(Resource):
{'name': 'hostname'} {'name': 'hostname'}
]) ])
@Authenticator @Authenticator
def post(self, vni, mac): def post(self, vni, mac, reqargs):
""" """
Create a new static DHCP lease {mac} in network {vni} Create a new static DHCP lease {mac} in network {vni}
--- ---
@ -3338,7 +3338,7 @@ class API_Storage_Ceph_Pool_Element(Resource):
{'name': 'replcfg', 'required': True, 'helpmsg': "A valid replication configuration must be specified."} {'name': 'replcfg', 'required': True, 'helpmsg': "A valid replication configuration must be specified."}
]) ])
@Authenticator @Authenticator
def post(self, pool): def post(self, pool, reqargs):
""" """
Create a new Ceph pool {pool} Create a new Ceph pool {pool}
--- ---
@ -5640,7 +5640,7 @@ class API_Provisioner_Script_Element(Resource):
{'name': 'data', 'required': True, 'helpmsg': "A script document must be specified."} {'name': 'data', 'required': True, 'helpmsg': "A script document must be specified."}
]) ])
@Authenticator @Authenticator
def post(self, script): def post(self, script, reqargs):
""" """
Create a new script {script} Create a new script {script}
--- ---