Correct user namespace from cust_ to custom_

This commit is contained in:
Mart van de Ven
2023-04-20 13:36:14 +08:00
parent 1056ff0d18
commit b545fc5590
2 changed files with 2 additions and 2 deletions

View File

@@ -43,7 +43,7 @@ class AwesomeStrategy(IStrategy):
if self.config['runmode'].value in ('live', 'dry_run'):
# Assign this to the class by using self.*
# can then be used by populate_* methods
self.cust_remote_data = requests.get('https://some_remote_source.example.com')
self.custom_remote_data = requests.get('https://some_remote_source.example.com')
```