mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 02:26:53 -07:00
PEP8 Function name should be lowercase
This commit is contained in:
parent
97e1ed71b3
commit
d8cbf422dd
18 changed files with 221 additions and 221 deletions
|
@ -6,13 +6,13 @@ import requests
|
|||
|
||||
import core
|
||||
from core import logger
|
||||
from core.nzbToMediaUtil import convert_to_ascii, remoteDir, server_responding
|
||||
from core.nzbToMediaUtil import convert_to_ascii, remote_dir, server_responding
|
||||
|
||||
requests.packages.urllib3.disable_warnings()
|
||||
|
||||
|
||||
class autoProcessComics(object):
|
||||
def processEpisode(self, section, dirName, inputName=None, status=0, clientAgent='manual', inputCategory=None):
|
||||
def process_episode(self, section, dirName, inputName=None, status=0, clientAgent='manual', inputCategory=None):
|
||||
dir_name = dirName
|
||||
input_name = inputName
|
||||
|
||||
|
@ -42,7 +42,7 @@ class autoProcessComics(object):
|
|||
params = {
|
||||
'cmd': 'forceProcess',
|
||||
'apikey': apikey,
|
||||
'nzb_folder': remoteDir(dir_name) if remote_path else dir_name,
|
||||
'nzb_folder': remote_dir(dir_name) if remote_path else dir_name,
|
||||
}
|
||||
|
||||
if input_name is not None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue