Skip to content

Commit 2352ffd

Browse files
committed
flake fix
1 parent f220b9f commit 2352ffd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdnum/ru/ogrn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
def validate(text):
5656
"""Determine if the given string is a valid OGRN."""
57-
if text[0] == "0":
57+
if text[0] == '0':
5858
raise InvalidComponent()
5959
control_digit = int(text[-1])
6060
if control_digit != calculate_control_digit(text):

0 commit comments

Comments
 (0)