Skip to content

Commit

Permalink
fix: fixed parser datetime
Browse files Browse the repository at this point in the history
  • Loading branch information
jlsneto committed Aug 15, 2024
1 parent f5379e3 commit c877c13
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cereja/scraping/_financial.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
from ..utils import camel_to_snake

try:
from .b3 import Share
except ImportError:
# noinspection PyUnresolvedReferences
Share = None
__all__ = ["FinancialData"]


Expand Down

0 comments on commit c877c13

Please sign in to comment.