mirror of
https://github.com/harismuneer/Ultimate-Facebook-Scraper
synced 2024-11-10 06:04:17 +00:00
fix linter
unrelated to this MR but should fix the linter
This commit is contained in:
parent
aa8b701490
commit
a683e1ee24
1 changed files with 3 additions and 1 deletions
|
@ -175,7 +175,9 @@ def get_time(x):
|
|||
try:
|
||||
time = x.find_element_by_tag_name("abbr").get_attribute("title")
|
||||
time = (
|
||||
str("%02d" % int(time.split(", ")[1].split()[1]),)
|
||||
str(
|
||||
"%02d" % int(time.split(", ")[1].split()[1]),
|
||||
)
|
||||
+ "-"
|
||||
+ str(
|
||||
(
|
||||
|
|
Loading…
Reference in a new issue