1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00

refactor: use super() to reference parent class (#280)

This commit is contained in:
Jonas L 2023-08-02 12:05:00 +02:00 committed by GitHub
parent 1b83de57ef
commit 98afa99904
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
32 changed files with 126 additions and 126 deletions

View file

@ -71,8 +71,8 @@ class Hcloud:
def _mark_as_changed(self):
self.result["changed"] = True
@staticmethod
def base_module_arguments():
@classmethod
def base_module_arguments(cls):
return {
"api_token": {
"type": "str",