-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release skip nro decom: #23050 NR expiry date is not being extended f…
…or future effective filings (#1578) * new release branch and merged ticket 23243 code change * #23050 NR expiry date is not being extended for future effective filings * Auth -Search Name Request - Cancelled Name Request should not be selected#19703 Signed-off-by: Chen <[email protected]> * Auth -Search Name Request - Cancelled Name Request should not be selected#19703 Signed-off-by: Chen <[email protected]> --------- Signed-off-by: Chen <[email protected]> Co-authored-by: Chen <[email protected]>
- Loading branch information
1 parent
0cebb83
commit f84e25d
Showing
4 changed files
with
82 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
__version__ = '1.1.60' | ||
|
||
__version__ = '1.1.62' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from dateutil import parser | ||
|
||
|
||
class DateUtils: | ||
|
||
@staticmethod | ||
def parse_date(date_str): | ||
return parser.parse(date_str) | ||
|
||
@staticmethod | ||
def parse_date_string(date_str, output_date_format): | ||
parsed_date = parser.parse(date_str) | ||
return parsed_date.strftime(output_date_format) |