hbmartin commited on
Commit
efb25f9
·
1 Parent(s): 78b08b7

fix line length

Browse files
Files changed (1) hide show
  1. pytube/cipher.py +3 -1
pytube/cipher.py CHANGED
@@ -53,7 +53,9 @@ def get_initial_function_name(js: str) -> str:
53
  regex = re.compile(pattern)
54
  results = regex.search(js)
55
  if results:
56
- logger.debug("finished regex search, matched: {pattern}".format(pattern=pattern))
 
 
57
  return results.group(1)
58
 
59
  raise RegexMatchError(caller="get_initial_function_name", pattern="multiple")
 
53
  regex = re.compile(pattern)
54
  results = regex.search(js)
55
  if results:
56
+ logger.debug(
57
+ "finished regex search, matched: {pattern}".format(pattern=pattern)
58
+ )
59
  return results.group(1)
60
 
61
  raise RegexMatchError(caller="get_initial_function_name", pattern="multiple")