Skip to content

Commit f9cb4a5

Browse files
committed
fix: lint
1 parent 65a2ab2 commit f9cb4a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/src/scripts/populate_db_gtfs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def populate_db(self, session: "Session", fetch_url: bool = True):
237237
feed.feed_name = self.get_safe_value(row, "name", "")
238238
feed.note = self.get_safe_value(row, "note", "")
239239
producer_url = self.get_safe_value(row, "urls.direct_download", "")
240-
if 'transitfeeds' not in producer_url: # Avoid setting transitfeeds as producer_url
240+
if "transitfeeds" not in producer_url: # Avoid setting transitfeeds as producer_url
241241
feed.producer_url = self.get_safe_value(row, "urls.direct_download", "")
242242
feed.authentication_type = str(int(float(self.get_safe_value(row, "urls.authentication_type", "0"))))
243243
feed.authentication_info_url = self.get_safe_value(row, "urls.authentication_info", "")

0 commit comments

Comments
 (0)