diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-07-06 11:34:33 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-07-06 11:46:39 +0200 |
commit | 04834bbea2984400b3a3d33ed4e32fc04affff1f (patch) | |
tree | d0baf37b61616ac0455eccc95214289088ce6396 /ishtar_common/forms.py | |
parent | e15763bbcee86bf867c43586d32a59acef30daa0 (diff) | |
download | Ishtar-04834bbea2984400b3a3d33ed4e32fc04affff1f.tar.bz2 Ishtar-04834bbea2984400b3a3d33ed4e32fc04affff1f.zip |
🚧 work on autofocus fix
Diffstat (limited to 'ishtar_common/forms.py')
-rw-r--r-- | ishtar_common/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/forms.py b/ishtar_common/forms.py index 5a2e14b02..338c49bfc 100644 --- a/ishtar_common/forms.py +++ b/ishtar_common/forms.py @@ -191,7 +191,7 @@ class CustomForm(BSForm): self.current_user = kwargs.pop("user").ishtaruser except AttributeError: pass - super(CustomForm, self).__init__(*args, **kwargs) + super().__init__(*args, **kwargs) if not self._explicit_ordering: self.custom_form_ordering() |