Skip to content

Commit

Permalink
Use https links
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Aug 2, 2023
1 parent 28aa856 commit 8152fa8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/tablib/packages/dbfpy/dbfnew.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
TODO:
- handle Memo fields.
- check length of the fields according to the
`http://www.clicketyclick.dk/databases/xbase/format/data_types.html`
`https://www.clicketyclick.dk/databases/xbase/format/data_types.html`
"""
"""History (most recent first)
Expand Down
6 changes: 3 additions & 3 deletions src/tablib/packages/dbfpy/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class DbfFieldDef:
Child classes must override ``type`` class attribute to provide datatype
information of the field definition. For more info about types visit
`http://www.clicketyclick.dk/databases/xbase/format/data_types.html`
`https://www.clicketyclick.dk/databases/xbase/format/data_types.html`
Also child classes must override ``defaultValue`` field to provide
default value for the field value.
Expand All @@ -66,7 +66,7 @@ class DbfFieldDef:
length = None

# field type. for more information about fields types visit
# `http://www.clicketyclick.dk/databases/xbase/format/data_types.html`
# `https://www.clicketyclick.dk/databases/xbase/format/data_types.html`
# must be overridden in child classes
typeCode = None

Expand Down Expand Up @@ -96,7 +96,7 @@ def __init__(self, name, length=None, decimalCount=None,
# set fields
self.name = name
# FIXME: validate length according to the specification at
# http://www.clicketyclick.dk/databases/xbase/format/data_types.html
# https://www.clicketyclick.dk/databases/xbase/format/data_types.html
self.length = length
self.decimalCount = decimalCount
self.ignoreErrors = ignoreErrors
Expand Down

0 comments on commit 8152fa8

Please sign in to comment.